diff options
author | justdave%syndicomm.com <> | 2003-04-21 22:08:27 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-04-21 22:08:27 +0000 |
commit | 7d7df1ad51f23ec7595aa42b1bd51db770193214 (patch) | |
tree | 66b992825810d0b2692d9ae30dd2f1dd99e7e72a /collectstats.pl | |
parent | Per bug 200472 - Changing the version information for Date::Parse (any) to in... (diff) | |
download | bugzilla-7d7df1ad51f23ec7595aa42b1bd51db770193214.tar.gz bugzilla-7d7df1ad51f23ec7595aa42b1bd51db770193214.tar.bz2 bugzilla-7d7df1ad51f23ec7595aa42b1bd51db770193214.zip |
Bug 202744: Removing unnecessary output from collectstats.pl cron job
r= gerv, a= justdave
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-x | collectstats.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/collectstats.pl b/collectstats.pl index 67e4c13b7..eedeaa35b 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -74,7 +74,8 @@ foreach (@myproducts) { } } my $tend = time; -print "Total time taken " . delta_time($tstart, $tend) . "\n"; +# Uncomment the following line for performance testing. +#print "Total time taken " . delta_time($tstart, $tend) . "\n"; &calculate_dupes(); |