LoggerCpp
LoggerCpp copied to clipboard
Adding spaces automatically
Is there a way to add spaces between entries automatically? For example logger << "Element values:" << 3 << 4 << "." to output something like Element values: 3 4 . instead of Element values:34.
I am not sure if this is what you are looking for. But the Logger is just like std::out
So << 4 << "::" << 3 << ".";
Will seperate it just fine.