Index: trunk/ppStack/src/ppStackCleanup.c
===================================================================
--- trunk/ppStack/src/ppStackCleanup.c	(revision 30722)
+++ trunk/ppStack/src/ppStackCleanup.c	(revision 30874)
@@ -116,4 +116,5 @@
 
     psTrace("ppStack", 1, "Finished at %f sec\n", psTimerMark("PPSTACK"));
+    psLogMsg("ppStack", PS_LOG_INFO, "Complete ppStack run: %f sec\n", psTimerMark("PPSTACK"));
     psTimerStop();
 
Index: trunk/ppStack/src/ppStackCombineFinal.c
===================================================================
--- trunk/ppStack/src/ppStackCombineFinal.c	(revision 30722)
+++ trunk/ppStack/src/ppStackCombineFinal.c	(revision 30874)
@@ -10,4 +10,6 @@
     psAssert(config, "Require configuration");
 
+    psTimerStart("PPSTACK_FINAL");
+    
     pmReadout *outRO = options->outRO;                                      // Output readout
     pmReadout *expRO = options->expRO;                                      // Exposure readout
@@ -111,4 +113,9 @@
 #endif
 
+    if (options->stats) {
+      psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_FINAL", 0,
+		       "Time to make final stack", psTimerMark("PPSTACK_FINAL"));
+    }
+    
     return true;
 }
Index: trunk/ppStack/src/ppStackCombineInitial.c
===================================================================
--- trunk/ppStack/src/ppStackCombineInitial.c	(revision 30722)
+++ trunk/ppStack/src/ppStackCombineInitial.c	(revision 30874)
@@ -90,5 +90,5 @@
     if (options->stats) {
         psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_INITIAL", 0,
-                         "Time to make final stack", psTimerMark("PPSTACK_INITIAL"));
+                         "Time to make initial stack", psTimerMark("PPSTACK_INITIAL"));
     }
 
Index: trunk/ppStack/src/ppStackConvolve.c
===================================================================
--- trunk/ppStack/src/ppStackConvolve.c	(revision 30722)
+++ trunk/ppStack/src/ppStackConvolve.c	(revision 30874)
@@ -16,4 +16,6 @@
     psAssert(config, "Require configuration");
 
+    psTimerStart("PPSTACK_CONVOLVE");
+    
     psMetadata *recipe = psMetadataLookupMetadata(NULL, config->recipes, PPSTACK_RECIPE); // ppStack recipe
     psAssert(recipe, "We've thrown an error on this before.");
@@ -365,4 +367,9 @@
     psFree(renorms);
 
+    if (options->stats) {
+      psMetadataAddF32(options->stats, PS_LIST_TAIL, "TIME_CONVOLVE", 0,
+		       "Time to convolve input images", psTimerMark("PPSTACK_CONVOLVE"));
+    }
+    
     return true;
 }
