From 02492105462a34bde7b607802873cd52d1e3a1f4 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sun, 26 Feb 2012 04:51:34 +0000 Subject: replace verbose() with logpost() since verbose() adds extraneous carraige returns to messages that have been filtered out by the log level svn path=/trunk/externals/unauthorized/; revision=16033 --- mp3streamout~.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mp3streamout~.c') diff --git a/mp3streamout~.c b/mp3streamout~.c index 5f089dc..7ef2d8b 100644 --- a/mp3streamout~.c +++ b/mp3streamout~.c @@ -376,7 +376,7 @@ static void mp3streamout_tilde_lame_init(t_mp3streamout *x) #endif { const char *lameVersion = get_lame_version(); - verbose(0, "mp3streamout~ : using lame version : %s", lameVersion ); + logpost(NULL, 4, "mp3streamout~ : using lame version : %s", lameVersion ); } /* setting lame parameters */ @@ -550,7 +550,7 @@ static void mp3streamout_print(t_mp3streamout *x) { const char * buf = 0; - verbose(0, mp3streamout_version); + logpost(NULL, 4, mp3streamout_version); post(" LAME mp3 settings:\n" " output sample rate: %d Hz\n" " bitrate: %d kbit/s", x->x_samplerate, x->x_bitrate); @@ -629,7 +629,7 @@ static void *mp3streamout_new(void) void mp3streamout_tilde_setup(void) { - verbose(0, mp3streamout_version); + logpost(NULL, 4, mp3streamout_version); mp3streamout_class = class_new(gensym("mp3streamout~"), (t_newmethod)mp3streamout_new, (t_method)mp3streamout_free, sizeof(t_mp3streamout), 0, 0); CLASS_MAINSIGNALIN(mp3streamout_class, t_mp3streamout, x_f ); -- cgit v1.2.1