[Rprotobuf-commits] r873 - pkg/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Mar 11 04:52:01 CET 2014


Author: murray
Date: 2014-03-11 04:51:59 +0100 (Tue, 11 Mar 2014)
New Revision: 873

Modified:
   pkg/src/rprotobuf.cpp
Log:
Remove some extraneous debugging printfs.

Modified: pkg/src/rprotobuf.cpp
===================================================================
--- pkg/src/rprotobuf.cpp	2014-03-11 01:12:48 UTC (rev 872)
+++ pkg/src/rprotobuf.cpp	2014-03-11 03:51:59 UTC (rev 873)
@@ -133,12 +133,10 @@
 
     /* first try the generated pool */
     const GPB::DescriptorPool* pool = GPB::DescriptorPool::generated_pool();
-    Rprintf("typeName = %s", typeName);
     const GPB::EnumDescriptor* desc = pool->FindEnumTypeByName(typeName);
     if (!desc) {
         /* then try the "runtime" pool" */
         pool = DescriptorPoolLookup::pool();
-        Rprintf("trying runtime pool typeName = %s", typeName);
         desc = pool->FindEnumTypeByName(typeName);
         if (!desc) {
             /* unlucky */



More information about the Rprotobuf-commits mailing list