summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-09-05 00:38:52 +0200
committerLennart Poettering <lennart@poettering.net>2008-09-05 00:38:52 +0200
commit12c5c62dadad248f4a01a9973b6e99c99d0badad (patch)
tree25e2b708bff40d62385e0f2dc80a1f148d5ca639
parent11cc072a1eef2c8b26e9e642b8bf64c63da8b8ec (diff)
Downgrade hrtimer warning to notice level
-rw-r--r--src/modules/module-alsa-sink.c2
-rw-r--r--src/modules/module-alsa-source.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/module-alsa-sink.c b/src/modules/module-alsa-sink.c
index e3f9a5ff..6f0d7830 100644
--- a/src/modules/module-alsa-sink.c
+++ b/src/modules/module-alsa-sink.c
@@ -1241,7 +1241,7 @@ int pa__init(pa_module*m) {
}
if (use_tsched && !pa_rtclock_hrtimer()) {
- pa_log("Disabling timer-based scheduling because high-resolution timers are not available from the kernel.");
+ pa_log_notice("Disabling timer-based scheduling because high-resolution timers are not available from the kernel.");
use_tsched = FALSE;
}
diff --git a/src/modules/module-alsa-source.c b/src/modules/module-alsa-source.c
index 54ffde57..fca05006 100644
--- a/src/modules/module-alsa-source.c
+++ b/src/modules/module-alsa-source.c
@@ -1073,7 +1073,7 @@ int pa__init(pa_module*m) {
}
if (use_tsched && !pa_rtclock_hrtimer()) {
- pa_log("Disabling timer-based scheduling because high-resolution timers are not available from the kernel.");
+ pa_log_notice("Disabling timer-based scheduling because high-resolution timers are not available from the kernel.");
use_tsched = FALSE;
}