summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-12-18 23:38:30 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-12-18 23:38:30 +0000
commit8ea611a9add39cfdb2026a384cde57de0874ce71 (patch)
treec971fc6ba197f05b435af316f0048505d8009555
parent53436f42f479059c95ae29e357c09ecf0a4c863a (diff)
Making the canary error message a little more obvious.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93805 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/asterisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 1af51e840..c8c32d4f7 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -2639,7 +2639,7 @@ static void *canary_thread(void *unused)
stat(canary_filename, &canary_stat);
tv = ast_tvnow();
if (tv.tv_sec > canary_stat.st_mtime + 60) {
- ast_log(LOG_WARNING, "Canary is dead!!! Reducing priority\n");
+ ast_log(LOG_WARNING, "The canary is no more. He has ceased to be! He's expired and gone to meet his maker! He's a stiff! Bereft of life, he rests in peace. His metabolic processes are now history! He's off the twig! He's kicked the bucket. He's shuffled off his mortal coil, run down the curtain, and joined the bleeding choir invisibile!! THIS is an EX-CANARY. (Reducing priority)\n");
ast_set_priority(0);
pthread_exit(NULL);
}