diff --git a/Unstructured_mesh/MeshDataContainer.h b/Unstructured_mesh/MeshDataContainer.h
index bfcc5c9c810b6d0f4a429e44fa40faae8bcedd70..f71c8536356e777eaf8bc3fe5ff9c1d47758f536 100644
--- a/Unstructured_mesh/MeshDataContainer.h
+++ b/Unstructured_mesh/MeshDataContainer.h
@@ -2,7 +2,7 @@
 #define MESHDATACONTAINER_H
 
 #include "MeshElement.h"
-#include "../debug/debug.h"
+#include "../debug/Debug.h"
 
 
 /**
diff --git a/Unstructured_mesh/Unstructured_mesh.pro b/Unstructured_mesh/Unstructured_mesh.pro
index 8f27927c6cd35bacdb87f545f27e897be4941fb1..dc85b955747bab3d86f6864658b65b3b8ec84950 100644
--- a/Unstructured_mesh/Unstructured_mesh.pro
+++ b/Unstructured_mesh/Unstructured_mesh.pro
@@ -8,8 +8,10 @@ SOURCES += \
     ../debug/debug.cpp
 
 HEADERS += \
+    ../debug/ConsoleLogger.h \
+    ../debug/Debug.h \
+    ../debug/HTMLLogger.h \
     ../debug/VariableExport.h \
-    ../debug/consolelogger.h \
     CellBoundaryConnection.h \
     CellConnection.h \
     ComputationalySignificantElement.h \
@@ -23,8 +25,6 @@ HEADERS += \
     UnstructedMeshDefine.h \
     UnstructuredMesh.h \
     VTKMeshReader.h \
-    ../debug/debug.h \
-    ../debug/htmllogger.h \
     VTKMeshWriter.h \
     Vector.h \
     Vertex.h
diff --git a/Unstructured_mesh/main.cpp b/Unstructured_mesh/main.cpp
index 2e62ca83bfc166ddf549f188c72d4bf4f5743994..43c3776a3a30ca25d104f26e2b487fa043e2d565 100644
--- a/Unstructured_mesh/main.cpp
+++ b/Unstructured_mesh/main.cpp
@@ -1,6 +1,6 @@
 #include <iostream>
 //#define UNDEBUG
-#include "../debug/debug.h"
+#include "../debug/Debug.h"
 #include "UnstructuredMesh.h"
 #include "MeshFunctions.h"
 #include "VTKMeshReader.h"
diff --git a/debug/consolelogger.h b/debug/ConsoleLogger.h
similarity index 100%
rename from debug/consolelogger.h
rename to debug/ConsoleLogger.h
diff --git a/debug/debug.h b/debug/Debug.h
similarity index 98%
rename from debug/debug.h
rename to debug/Debug.h
index eb7fb26df5ed55d1ca9246bf50971913cf015a2e..a05969ce387142852f50efc3bf0b1986bb3370d3 100644
--- a/debug/debug.h
+++ b/debug/Debug.h
@@ -74,8 +74,8 @@
 
 #ifndef UNDEBUG
 #include <iostream>
-#include "htmllogger.h"
-#include "consolelogger.h"
+#include "HTMLLogger.h"
+#include "ConsoleLogger.h"
 #include <stdexcept>
 /*
 ** Macros intended for sending
diff --git a/debug/htmllogger.h b/debug/HTMLLogger.h
similarity index 100%
rename from debug/htmllogger.h
rename to debug/HTMLLogger.h
diff --git a/debug/debug.cpp b/debug/debug.cpp
index 9cf3054272893c28cbd2a023ea3de66cb669ff84..9f8a7b17f6551b09d001352d01dbccc0e9456dc6 100644
--- a/debug/debug.cpp
+++ b/debug/debug.cpp
@@ -1,3 +1,3 @@
-#include "debug.h"
+#include "Debug.h"
 // declaring extern variable
 HtmlLogger HDBGLog("DBG.html");