This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Description
Calling info() << someList should be identical to calling info() << element on each element of someList.
This is not the case because when used on a list, the string is concatenated with \n and the logging callback is called once. Instead, the logging callback should be called for each line and we shouldn't assume anything on the "newline" character.