f5c601799ce10f33e75e5a81969b537072a3c123
kuhn
  Thu Mar 14 13:45:49 2019 -0700
added a line of output soyou know which identifier is being run

diff --git src/utils/qa/runJoiner.csh src/utils/qa/runJoiner.csh
index 19cb20c..3f8b939 100755
--- src/utils/qa/runJoiner.csh
+++ src/utils/qa/runJoiner.csh
@@ -102,27 +102,28 @@
 
 if (-e xxIDxx) then
   set idVal=`wc -l xxIDxx | gawk '{print $1}'`
   echo
   if ($idVal != 0) then
     echo "found identifiers:"
     echo
     cat xxIDxx
   else
     echo "  no identifiers for this table"
   endif
   echo
 endif
 
 foreach identifier (`cat xxIDxx`)
+  echo "\n identifier= $identifier"
   nice joinerCheck $range -identifier=$identifier -keys $joinerFile 
 end
 
 if ( $noTimes == "" ) then
   echo "running -times flag\n"
   nice joinerCheck $range -times $joinerFile
 endif
 
 cleanup:
 rm -f xxIDxx
 
 exit 0