Hello everyone, Whenever remote logging is enabled, logs are only uploaded to the target path once the tasks have been completed. This makes it harder to monitor tasks that are long-running since there is no means to getting the logs.
I was working on a Handler that saves the chunked logs where chunking is decided based on two factors - 1. Max time has elapsed since the last chunking was done 2. Max bytes have arrived since the last chunking was done So a chunk will be saved either when the max time has elapsed or the file size limit has been surpassed. The chunked files can then be uploaded whenever they are created and served by stitching them back together. Do let me know your thoughts. Best regards, Akash