diff --git a/Common/LuaBindings.cpp b/Common/LuaBindings.cpp
index 9bcde675ab953eec9e8d1ccecc04d9a40fdbbb34..6a62a8e1f8d65b4f7eac758862042f52dfe8eed2 100644
--- a/Common/LuaBindings.cpp
+++ b/Common/LuaBindings.cpp
@@ -290,7 +290,6 @@ void binding::checkDocCompleteness()
       nBad++;
     }
     luaMethodBinding *constructor = cb->second->getConstructor();
-    printf("checking %s\n", cb->first.c_str());
     if(constructor){
       if(constructor->getDescription().empty()){
         Msg::Error("binded constructor of class %s has no description.", 
@@ -314,7 +313,6 @@ void binding::checkDocCompleteness()
                    mb->first.c_str());
         nBad++;
       }
-      printf("checking     %s\n", mb->first.c_str());
       std::vector<std::string> argTypeNames;
       mb->second->getArgTypeNames(argTypeNames);
       int nTypeArg = countInArguments(argTypeNames);