Index: trunk/ippScripts/scripts/detrend_calc_norm.pl
===================================================================
--- trunk/ippScripts/scripts/detrend_calc_norm.pl	(revision 9004)
+++ trunk/ippScripts/scripts/detrend_calc_norm.pl	(revision 9005)
@@ -46,6 +46,8 @@
     my @command = split /\s+/, $command;
     my ( $stdin, $stdout, $stderr ); # Buffers for running program
+    print "Running [$command]...\n";
     run \@command, \$stdin, \$stdout, \$stderr or
 	die "Unable to perform dettool -processed -unmask on detrend $detId/$iter: $?";
+    print $stdout . "\n";
     
     # Parse the output
@@ -81,6 +83,8 @@
     my ( $stdout, $stderr ); # Buffers for running program
     my @command = split /\s+/, $ppNormCalc;
+    print "Running [$ppNormCalc]...\n";
     run \@command, \$normData, \$stdout, \$stderr or
 	die "Unable to perform ppNormCalc: $?";
+    print $stdout . "\n";
 
     # Parse the output
@@ -100,6 +104,8 @@
 
 	my ( $stdin, $stdout, $stderr ); # Buffers for running program
+	print "Running [$command]...\n";
 	run \@command, \$stdin, \$stdout, \$stderr or
 	    die "Unable to perform dettool -addnormstat for $className: $?";
+	print $stdout . "\n";
     }
 }
