diff --git a/pd/src/g_template.c b/pd/src/g_template.c
index b89b9f142c9564150fec15b8b82e80fd3ed61de2..d75d14742de416c6a9405401d1f3775f9d06c99a 100644
--- a/pd/src/g_template.c
+++ b/pd/src/g_template.c
@@ -6902,7 +6902,7 @@ static void *drawimage_new(t_symbol *classsym, int argc, t_atom *argv)
         x->x_img->s_name,
         dir->s_name,
         x->x_flags);
-    post("deleteme is %d", x->x_deleteme);
+    //post("deleteme is %d", x->x_deleteme);
     return (x);
 }
 
diff --git a/pd/src/pdtk_drawimage.tcl b/pd/src/pdtk_drawimage.tcl
index 57e6e80f42ee65369bdcb9875dd3ce55e57ebaa7..a4dda9efb2e3f120d3a8952d023a9663c3080f8d 100644
--- a/pd/src/pdtk_drawimage.tcl
+++ b/pd/src/pdtk_drawimage.tcl
@@ -41,7 +41,7 @@ proc pdtk_drawimage_new {obj path canvasdir flags} {
         if {[file extension $filename] eq ".gif" ||
             [file extension $filename] eq ".png"} {
             image create photo ::drawimage_${obj}$i -file "$filename"
-            pdtk_post "image is ::drawimage_${obj}$i\n"
+            #pdtk_post "image is ::drawimage_${obj}$i\n"
             incr i
         }
         if {$i > 1000 || !$image_seq} {break}
@@ -56,7 +56,7 @@ proc pdtk_drawimage_new {obj path canvasdir flags} {
     if {$i > 0} {
     pdtk_post "image width is [image width ::drawimage_${obj}0]\n"
     pdtk_post "image height is [image height ::drawimage_${obj}0]\n"
-    pdtk_post "obj is $obj\n"
+    #pdtk_post "obj is $obj\n"
         pd [concat $obj size [image width ::drawimage_${obj}0] \
             [image height ::drawimage_${obj}0] \;]
     } else {