diff --git a/src/CTUApexConsumer.cpp b/src/CTUApexConsumer.cpp
index 30e6fa40117d0a64b13332c1fe51e4086083921d..8da27a9630632d787c19df31c6bce02737f736da 100644
--- a/src/CTUApexConsumer.cpp
+++ b/src/CTUApexConsumer.cpp
@@ -150,12 +150,6 @@ void CTUApexConsumer::HandleTranslationUnit(clang::ASTContext &Context) {
     SPDLOG_INFO("Generate wrapper calls");
     SPDLOG_CRITICAL("WRAPPER CALLS CAN NOT YET BE IMPLEMENTED");
 
-    for(const auto& e : call_graph->getNodes()){
-        std::cout<<e.second->getFunctionName()<<"\n";
-    }
-
-    assert(call_graph->getMain());
-
     if(auto md=call_graph->getMain()->checkAndGet<ExtractionMetadata>(); md.first && !md.second->isMarkedToExtract()){
         //we have no main function and need to create or own
         outFile<<"\nint main(){return 0;}\n";