custom method
print a line with custom
Implementation
void custom(List<SemiLogContent> contents,
{String separator = ' ', hasHeader = true}) {
String msg = contents.map((e) => e.apply()).join(separator);
if (hasHeader) {
print('$_header $msg');
} else {
print(msg);
}
}