Implement LOGN for all sinks

This commit is contained in:
Alexey Rybalchenko
2019-08-19 15:58:51 +02:00
committed by Mohammad Al-Turany
parent dcc27744cd
commit d9ac93552e
3 changed files with 12 additions and 8 deletions

View File

@@ -203,10 +203,11 @@ int main()
LOGV(info, verylow) << "I should be printed with very low verbosity";
LOGN();
LOGN();
LOGN();
LOGN();
cout << "cout: pushing 4 new lines with LOGN() in info verbosity" << endl;
LOGN(info);
LOGN(info);
LOGN(info);
LOGN(info);
return 0;
}