Index: trunk/psphot/src/psphotSignificanceImage.c
===================================================================
--- trunk/psphot/src/psphotSignificanceImage.c	(revision 20286)
+++ trunk/psphot/src/psphotSignificanceImage.c	(revision 20453)
@@ -11,5 +11,5 @@
 
     // smooth the image and weight map
-    psTimerStart ("smooth");
+    psTimerStart ("psphot.smooth");
 
     // XXX we can a) choose fft to convolve if needed and b) multithread fftw
@@ -45,5 +45,5 @@
     psImage *smooth_im = psImageCopy(NULL, readout->image, PS_TYPE_F32);
     psImageSmoothMask(smooth_im, smooth_im, readout->mask, maskVal, SIGMA_SMTH, NSIGMA_SMTH, minGauss);
-    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark("smooth"));
+    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth image: %f sec\n", psTimerMark("psphot.smooth"));
 
     // Smooth the weight, applying the mask as we go.  The variance is smoothed by the PSF^2,
@@ -57,5 +57,5 @@
     psImageSmoothMask(smooth_wt, smooth_wt, readout->mask, maskVal, SIGMA_SMTH * M_SQRT1_2,
                       NSIGMA_SMTH, minGauss);
-    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark("smooth"));
+    psLogMsg("psphot", PS_LOG_MINUTIA, "smooth weight: %f sec\n", psTimerMark("psphot.smooth"));
 
     psImage *mask = readout->mask;
@@ -116,5 +116,5 @@
         }
     }
-    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark("smooth"));
+    psLogMsg ("psphot", PS_LOG_INFO, "built smoothed signficance image: %f sec\n", psTimerMark("psphot.smooth"));
 
     // optionally save example images under trace
