Vercel expanded the runtime log limit from a total of 4KB per function to 4KB per line earlier this year
However the Vercel logs do not seem to be picking up individual console logs as a new line - and the 4KB/line limit is not being applied - different console.logs still appear as a combined log for each function
Is there a way where the console logs can appear as separate lines in the vercel logging screen
For non-streaming functions, all log are buffered and submitted in batches after the function has been completed. For streaming functions, the may still be submitted in batches but will be split based on the streamed data/logs.
You can read more about how our log drains service works here: Log Drains Reference