Index: trunk/ippScripts/scripts/register_exp.pl
===================================================================
--- trunk/ippScripts/scripts/register_exp.pl	(revision 16196)
+++ trunk/ippScripts/scripts/register_exp.pl	(revision 16308)
@@ -34,5 +34,5 @@
     );
 
-my ($cache, $exp_id, $exp_tag, $dbname, $no_update, $no_op);
+my ($cache, $exp_id, $exp_tag, $dbname, $verbose, $no_update, $no_op);
 GetOptions(
     'caches'        => \$cache,
@@ -40,4 +40,5 @@
     'exp_tag|t=s'   => \$exp_tag,
     'dbname|d=s'    => \$dbname, # Database name    
+    'verbose'       => \$verbose,   # Print to stdout
     'no-update'     => \$no_update,
     'no-op'         => \$no_op,
@@ -126,5 +127,5 @@
     $command .= " -dbname $dbname" if defined $dbname;
     my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
-        cache_run(command => $command, verbose => 1);
+        cache_run(command => $command, verbose => $verbose);
     unless ($success) {
 	$error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
@@ -176,5 +177,5 @@
 unless ($no_update) {
     my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
-        cache_run(command => $command, verbose => 1);
+        cache_run(command => $command, verbose => $verbose);
     unless ($success) {
 	$error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
