diff --git a/src/export/generated.jl b/src/export/generated.jl
index d4a6b9d475ecaf01df0922b74cc798fb0557e452..545fcd6705d2e66d0f5930594d90b39a3d2ae4cb 100644
--- a/src/export/generated.jl
+++ b/src/export/generated.jl
@@ -331,11 +331,8 @@ This macro produces code
 where `fieldtype` is the automatically determined type of the field.
 """
 macro exportrecursive(type, field::Symbol)
-    #check_type(fieldtype)
     check_type(type)
-    print(parentmodule(__module__.eval))
     local ft = fieldtype(__module__.eval(type), field)
-    println(ft)
     return quote
         @exporttransform $(esc(type)) $(field) ExportUtils.serialize!(Dict{String, Any}("_type" => string(typeof(value))), value) ExportUtils.deserialize(data, InPartS.reconstruct_subtype(data["_type"], $(ft)))
     end