Logs for web services used to be displayed in chronological order, which was great because multi-line logs would be readable in the expected order (the order in which they were called, from top to bottom).
A recent update has reversed this order, which not only makes them harder to read, but also breaks the output formatting for multi-line logs. Take, for example, a multi-line JSON object:
{
"foo": "example",
"bar": "hello, world"
}
This will now appear in the logs as:
}
"bar": "hello, world"
"foo": "example",
{
When you have multiple objects logged back-to-back, this gets especially confusing to read. I love the new log filtering options, but please undo the change that made logs appear in reverse chronological order!