From 682c6f28b1078a14aa89c4f194f8963a9bd4f837 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Sat, 10 Dec 2011 07:16:52 +0000 Subject: [PATCH] these error messages aren't CRIT worthy SVN revision: 66076 --- src/modules/mixer/pa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/mixer/pa.c b/src/modules/mixer/pa.c index 6d5f700aa..544f131b6 100644 --- a/src/modules/mixer/pa.c +++ b/src/modules/mixer/pa.c @@ -223,7 +223,7 @@ pulse_recv(Pulse *conn, Ecore_Fd_Handler *fdh) } return tag; error: - CRI("Received error command %"PRIu32"!", x); + ERR("Received error command %"PRIu32"!", x); pulse_tag_free(tag); return NULL; } @@ -680,7 +680,7 @@ pulse_new(void) buf = eina_stringshare_add(STATEDIR "/run/pulse/native"); if (stat(buf, &st)) { - CRI("could not locate local socket '%s'!", buf); + INF("could not locate local socket '%s'!", buf); free(conn); return NULL; }