b4x-de Active Member Licensed User Longtime User Feb 13, 2026 #1 When using iReleaseLogger, I frequently receive the following message in the log: error sending data: 40 I assume that this is an error because the message size is too large. Unfortunately, I cannot control whether smaller message fragments are sent. What can I do?
When using iReleaseLogger, I frequently receive the following message in the log: error sending data: 40 I assume that this is an error because the message size is too large. Unfortunately, I cannot control whether smaller message fragments are sent. What can I do?
Erel B4X founder Staff member Licensed User Longtime User Feb 15, 2026 #2 Does it break the connection? What are you using iReleaseLogger to? It was mainly intended for debugging. Upvote 0
Does it break the connection? What are you using iReleaseLogger to? It was mainly intended for debugging.
b4x-de Active Member Licensed User Longtime User Feb 16, 2026 #3 No, the connection remains active and data packets follow after a while. I only use iReleaseLogger for debugging by transferring log information from the release version. Upvote 0
No, the connection remains active and data packets follow after a while. I only use iReleaseLogger for debugging by transferring log information from the release version.
Erel B4X founder Staff member Licensed User Longtime User Feb 16, 2026 #4 A possible workaround is to split large messages and add Sleep(0) in between. Upvote 0