Index: trunk/Ohana/src/opihi/pantasks/TaskOps.c
===================================================================
--- trunk/Ohana/src/opihi/pantasks/TaskOps.c	(revision 11324)
+++ trunk/Ohana/src/opihi/pantasks/TaskOps.c	(revision 11898)
@@ -547,5 +547,5 @@
 /*** task timer functions ***/
 
-double GetTaskTimer (struct timeval start) {
+double GetTaskTimer (struct timeval start, int verbose) {
 
   double dtime;
@@ -555,4 +555,10 @@
   dtime = DTIME (now, start);
   
+  if (verbose) {
+      fprintf (stderr, "tt: %d %6d  - %d %6d : %f\n", 
+	       now.tv_sec, now.tv_usec, 
+	       start.tv_sec, start.tv_usec, dtime);
+  }
+
   return (dtime);
 }
