diff --git a/SimpleTests/MeshTests/MeshRead.cpp b/SimpleTests/MeshTests/MeshRead.cpp
index ebfbbb165e25b8709f3198ba4e1640fa1fd06726..bb0bcf2e3097d5dd5ac623335c3177d8a555b652 100644
--- a/SimpleTests/MeshTests/MeshRead.cpp
+++ b/SimpleTests/MeshTests/MeshRead.cpp
@@ -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");