summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-12-18 11:37:42 +0100
committerLennart Poettering <lennart@poettering.net>2009-12-18 11:37:42 +0100
commitcad82e577b10985e0201c1d19713499293f23703 (patch)
treeebc3ed8d92b3ea29c4ab121ebfe0f99cbbd768fd
parentcab055fad63974bb6b6664bc2ed87f88c4ae9e81 (diff)
Make messages less cute
Requested for RHEL: https://bugzilla.redhat.com/show_bug.cgi?id=530582
-rw-r--r--rtkit-daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtkit-daemon.c b/rtkit-daemon.c
index 9a533e4..2a669aa 100644
--- a/rtkit-daemon.c
+++ b/rtkit-daemon.c
@@ -895,7 +895,7 @@ static int reset_all(void) {
/* Goes through /proc and demotes *all* threads to
* SCHED_OTHER */
- syslog(LOG_INFO, "Rampaging.\n");
+ syslog(LOG_INFO, "Demoting real-time threads.\n");
if (!(pd = opendir(get_proc_path()))) {
r = -errno;
@@ -1543,7 +1543,7 @@ static void* watchdog_thread(void *data) {
if (TIMESPEC_MSEC(last_cheep) + canary_watchdog_msec <= TIMESPEC_MSEC(now)) {
last_cheep = now;
- syslog(LOG_WARNING, "The poor little canary died! Taking action.\n");
+ syslog(LOG_WARNING, "The canary thread is apparently starving. Taking action.\n");
refuse_until = (uint32_t) now.tv_sec + canary_refusal_sec;
__sync_synchronize();