My company is currently using FuelPHP 1.7.3, things have been great but we plan to upgrade to version 1.8 as it supports PHP 7.
We have some tasks written and in local development environment which write the contents in log (i.e. \Log::info) so we can confirm that they work correctly. There are some long texts that we want to confirm in Log before putting to real test environment, but for some reasons the newlines we want to print have all been converted into spaces so by reading logs we have no idea which is newline and which is space. For example \Log::info("A\nB") would be written in log as INFO [date-time] --> A B. We did not have this in 1.7.3 and since nothing regarding this is mentioned in changelog, we just want to confirm that this is actually a feature (maybe for a reason that we have not yet be able to comprehend) and not a bug.