Skip to content
Snippets Groups Projects
Commit 17103bfe authored by Tom Fischer's avatar Tom Fischer
Browse files

added better format for log output

parent 19a1bc0c
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
#include "RunTime.h"
#include "StringTools.h"
#include "tclap/CmdLine.h"
#include "LogogSimpleFormatter.h"
// BaseLib/logog
#include "logog.hpp"
......@@ -26,7 +27,9 @@
int main(int argc, char *argv[])
{
LOGOG_INITIALIZE();
logog::Cout* logogCout = new logog::Cout;
BaseLib::LogogSimpleFormatter *custom_format (new BaseLib::LogogSimpleFormatter);
logog::Cout *logogCout(new logog::Cout);
logogCout->SetFormatter(*custom_format);
TCLAP::CmdLine cmd("Simple mesh loading test", ' ', "0.1");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment