Index: trunk/ippToPsps/perl/ippToPsps_run.pl
===================================================================
--- trunk/ippToPsps/perl/ippToPsps_run.pl	(revision 29083)
+++ trunk/ippToPsps/perl/ippToPsps_run.pl	(revision 29084)
@@ -17,5 +17,5 @@
 
 # globals
-my $camera = 'GPC1';
+my $camera = undef;
 my $batchType = undef;
 my $dvoLocation = undef;
@@ -33,4 +33,5 @@
 # get user args
 GetOptions(
+        'camera|c' => \$camera,
         'output|o=s' => \$output,
         'batch|b=s' => \$batchType,
@@ -63,4 +64,8 @@
     print "* REQUIRED: need to provide a DVO Db        -d <pathToDVO>\n";
 }
+if (!defined $verbose) {
+    $camera = "GPC1";
+    print "* OPTIONAL: select a camera                 -c                   (default = $camera)\n";
+}
 if (!defined $singleExpId) {
 
@@ -175,6 +180,10 @@
         if (!$initBatch && $ippToPspsDb->isExposureAlreadyProcessed($expId)) {
 
-            if ($force) {print "* Forcing....\n";} 
-            else {next};
+            if ($force) {print "* Already processed '$expId', but forcing....\n";} 
+            else {
+            
+                print "* Exposure ID '$expId' has already been processed\n";
+                next
+            };
         }
 
