diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-01-23 15:45:19 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-01-23 15:45:19 +0000 |
commit | e628992403823e28a659f6e35d6c69b8c268e5c2 (patch) | |
tree | cb11b8837b177028f80c071df58617f4e4907ebc /ext | |
parent | 54b18209458b9cc208b1d7f2885316a9140b12eb (diff) |
categorize log level
Original commit message from CVS:
categorize log level
Diffstat (limited to 'ext')
-rw-r--r-- | ext/esd/esdsink.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c index e719282f..ee3a3a64 100644 --- a/ext/esd/esdsink.c +++ b/ext/esd/esdsink.c @@ -322,8 +322,8 @@ gst_esdsink_chain (GstPad *pad, GstData *_data) } } - GST_DEBUG ("esdsink: fd=%d data=%p size=%d", - esdsink->fd, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf)); + GST_LOG ("fd=%d data=%p size=%d", + esdsink->fd, GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf)); while (to_write > 0){ int done; @@ -444,7 +444,7 @@ gst_esdsink_open_audio (GstEsdsink *sink) return FALSE; } - GST_DEBUG ("esdsink: attempting to open connection to esound server"); + GST_INFO ("attempting to open connection to esound server"); if(sink->fallback){ sink->fd = esd_play_stream_fallback(esdformat, sink->frequency, sink->host, connname); }else{ @@ -455,6 +455,7 @@ gst_esdsink_open_audio (GstEsdsink *sink) ("can't open connection to esound server")); return FALSE; } + GST_INFO ("successfully opened connection to esound server"); return TRUE; } @@ -468,7 +469,7 @@ gst_esdsink_close_audio (GstEsdsink *sink) close(sink->fd); sink->fd = -1; - GST_DEBUG ("esdsink: closed sound device"); + GST_INFO ("esdsink: closed sound device"); } static GstElementStateReturn |