From 006014bfde7b625b51a24c9aa591f335e16ce7e8 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Wed, 28 Jul 2004 00:06:28 +0000 Subject: [PATCH] fixing some formatting problems --- sbin/Hourly/SummarizePassiveProfileLog.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/Hourly/SummarizePassiveProfileLog.pm b/sbin/Hourly/SummarizePassiveProfileLog.pm index cef94e450..89b4ff12d 100644 --- a/sbin/Hourly/SummarizePassiveProfileLog.pm +++ b/sbin/Hourly/SummarizePassiveProfileLog.pm @@ -22,13 +22,13 @@ use WebGUI::DateTime; sub process { my $verbose = shift; unless ($session{setting}{passiveProfilingEnabled}) { - print "Passive profiling is disabled...\n"; + print " - Passive profiling is disabled." if ($verbose); return; } my ($firstDate) = WebGUI::SQL->quickArray("select min(dateOfEntry) from passiveProfileLog"); my $interval = $session{config}{passiveProfileInterval} || 86400; if (WebGUI::DateTime::time()-$firstDate < $interval) { - print " - Recently runned: Skipping...\n" if ($verbose); + print " - Recently summarized: Skipping" if ($verbose); return ""; }