diff --git a/GUI/View/Main/ProjectManager.cpp b/GUI/View/Main/ProjectManager.cpp
index a63125df0417c6617bbdeb22a2db43e6a2eb1762..1c5a024ae30bd2c4c4a1da7797cb2d400c69870e 100644
--- a/GUI/View/Main/ProjectManager.cpp
+++ b/GUI/View/Main/ProjectManager.cpp
@@ -183,11 +183,8 @@ void ProjectManager::openProject(QString projectPullPath)
     }
 
     createNewProject();
-    std::cout << "ProjectManager::openProject 6" << std::endl;
     loadProject(projectPullPath);
-    std::cout << "ProjectManager::openProject 7" << std::endl;
     emit documentOpenedOrClosed(true);
-    std::cout << "ProjectManager::openProject 8" << std::endl;
 }
 
 //! Calls dialog window to define project path and name.
@@ -209,17 +206,12 @@ void ProjectManager::loadProject(const QString& fullPathAndName)
     if (qApp)
         QApplication::setOverrideCursor(Qt::WaitCursor);
     if (useAutosave && restoreProjectDialog(fullPathAndName, autosaveFullPath)) {
-        std::cout << "ProjectManager::loadProject with autosave 1" << std::endl;
         gDoc->loadProjectFileWithData(autosaveFullPath);
-        std::cout << "ProjectManager::loadProject with autosave 2" << std::endl;
         gDoc->setProjectFullPath(fullPathAndName);
-        std::cout << "ProjectManager::loadProject with autosave 3" << std::endl;
         // restored project should be marked by '*'
         gDoc->setModified();
     } else {
-        std::cout << "ProjectManager::loadProject without autosave 4" << std::endl;
         gDoc->loadProjectFileWithData(fullPathAndName);
-        std::cout << "ProjectManager::loadProject without autosave 5" << std::endl;
     }
     if (qApp)
         QApplication::restoreOverrideCursor();