Index: trunk/psLib/src/math/psMathUtils.c
===================================================================
--- trunk/psLib/src/math/psMathUtils.c	(revision 12503)
+++ trunk/psLib/src/math/psMathUtils.c	(revision 12609)
@@ -3,6 +3,6 @@
  *  This file contains standard math routines.
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-03-20 01:23:40 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-03-28 00:49:33 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -63,6 +63,6 @@
     long max; \
     long mid; \
-    psTrace("psLib.math", 4, "---- () begin ----\n"); \
-    /* psTrace("psLib.math", 6, "Determining the bin for: %f\n", x); */\
+    psTrace("psLib.math", 5, "---- () begin ----\n"); \
+    psTrace("psLib.math", 4, "Determining the bin for: %f\n", (float) value); \
     if (value < bounds[0]) { \
         psTrace("psLib.math", 3, \
@@ -86,5 +86,6 @@
         \
         if (value == bounds[mid]) { \
-            psTrace("psLib.math", 4, "---- %s(%ld) end (1) ----\n", __func__, mid); \
+            psTrace("psLib.math", 4, "found %ld\n", mid); \
+            psTrace("psLib.math", 5, "---- %s(%ld) end (1) ----\n", __func__, mid); \
             return(mid); \
         } else if (value < bounds[mid]) { \
@@ -95,5 +96,5 @@
         mid = ((max+1)+min)/2; \
     } \
-    psTrace("psLib.math", 4, "---- %s(%ld) end (2) ----\n", __func__, min); \
+    psTrace("psLib.math", 5, "---- %s(%ld) end (2) ----\n", __func__, min); \
     return(min); \
 }
