summaryrefslogtreecommitdiff
path: root/pingd
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2003-01-14 07:41:36 +0000
committerPeter Palfrader <peter@palfrader.org>2003-01-14 07:41:36 +0000
commit61e64fd15adc61b458c8eea635f5c8ee9f8cfa77 (patch)
tree973dac3309e85fb288f92da0b024511541f8d304 /pingd
parent5ff491eaca35a2f3696cb5fa5d1be8e904a7eb01 (diff)
End log messages with periods
Diffstat (limited to 'pingd')
-rwxr-xr-xpingd10
1 files changed, 5 insertions, 5 deletions
diff --git a/pingd b/pingd
index 0fd0797..32552d6 100755
--- a/pingd
+++ b/pingd
@@ -3,7 +3,7 @@
$| = 1;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: pingd,v 1.91 2003/01/14 06:59:41 weasel Exp $
+# $Id: pingd,v 1.92 2003/01/14 07:41:36 weasel Exp $
#
=pod
@@ -302,7 +302,7 @@ my $redirected_stdio = 0;
sub setSigHandlers() {
$SIG{'HUP'} = sub {
- Echolot::Log::info("Got SIGHUP. scheduling readcommands");
+ Echolot::Log::info("Got SIGHUP. scheduling readcommands.");
Echolot::Globals::get()->{'scheduler'}->schedule('readcommands', 0, time() );
if ($redirected_stdio) {
close STDOUT;
@@ -314,15 +314,15 @@ sub setSigHandlers() {
Echolot::Log::reopen();
};
$SIG{'INT'} = sub {
- Echolot::Log::info("Got SIGINT. scheduling exit");
+ Echolot::Log::info("Got SIGINT. scheduling exit.");
Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, time() );
};
$SIG{'QUIT'} = sub {
- Echolot::Log::info("Got SIGINT. scheduling exit");
+ Echolot::Log::info("Got SIGINT. scheduling exit.");
Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, time() );
};
$SIG{'TERM'} = sub {
- Echolot::Log::info("Got SIGINT. scheduling exit");
+ Echolot::Log::info("Got SIGINT. scheduling exit.");
Echolot::Globals::get()->{'scheduler'}->schedule('exit', 0, time() );
};
};