diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-06-06 11:05:39 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-06-06 11:05:39 -0700 |
commit | 5098f8b0fe30241507539ca09027a2c799f10686 (patch) | |
tree | 565636ea5b60869610ed60f56ecc127aa98670db /sesman/chansrv/pulse | |
parent | 1b8b5daab5a42f182f7b2623dd890740b336a5fb (diff) | |
download | xrdp-proprietary-5098f8b0fe30241507539ca09027a2c799f10686.tar.gz xrdp-proprietary-5098f8b0fe30241507539ca09027a2c799f10686.zip |
pulse: change some errors to debug
Diffstat (limited to 'sesman/chansrv/pulse')
-rw-r--r-- | sesman/chansrv/pulse/module-xrdp-sink.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sesman/chansrv/pulse/module-xrdp-sink.c b/sesman/chansrv/pulse/module-xrdp-sink.c index f6650635..3f09b727 100644 --- a/sesman/chansrv/pulse/module-xrdp-sink.c +++ b/sesman/chansrv/pulse/module-xrdp-sink.c @@ -47,7 +47,6 @@ #include <pulse/rtclock.h> #include <pulse/timeval.h> #include <pulse/xmalloc.h> -//#include <pulse/i18n.h> #include <pulsecore/core-error.h> #include <pulsecore/sink.h> @@ -168,7 +167,7 @@ static void sink_update_requested_latency_cb(pa_sink *s) { u->got_max_latency = 0; if (u->block_usec == (pa_usec_t) -1) { u->block_usec = s->thread_info.max_latency; - pa_log("2 block_usec %d", u->block_usec); + pa_log_debug("2 block_usec %d", u->block_usec); u->got_max_latency = 1; } @@ -503,7 +502,7 @@ int pa__init(pa_module*m) { pa_sink_set_rtpoll(u->sink, u->rtpoll); u->block_usec = BLOCK_USEC; - pa_log("3 block_usec %d", u->block_usec); + pa_log_debug("3 block_usec %d", u->block_usec); nbytes = pa_usec_to_bytes(u->block_usec, &u->sink->sample_spec); pa_sink_set_max_rewind(u->sink, nbytes); pa_sink_set_max_request(u->sink, nbytes); |