What mean [...] into the logs?

Hi! we run FFMPEG process into a Container and after some time, we see that new lines stop, and the last line have this […] have some consolidation or deduplication of logs?

Example:
[FFMPEG] size= 2407552kB time=85:36:06.76 bitrate= 64.0kbits/s speed= 1x[…]

Thanks!
Alejandro

Hi, The log messages sent to our API from your device are limited to a maximum length of 10,000 characters. The string [...] is used to indicate that some log output has been truncated. The source code implementing this truncation can be seen here https://github.com/balena-io/balena-supervisor/blob/master/src/logging-backends/balena-backend.ts#L93
To get around this, you could either break your application’s log output into smaller chunks, or only log the information that you need to inspect.