# HG changeset patch # User voroshil # Date 1163770966 0 # Node ID 460da4c85cb4f5d52e735c7293de23187bcb0acb # Parent dc1a02e98cb69d2e22f1ef662cd5cd727c09a24e Change verbosity level from MSGL_V to MSGL_INFO for "Current frequency is" message in stream_radio. diff -r dc1a02e98cb6 -r 460da4c85cb4 stream/stream_radio.c --- a/stream/stream_radio.c Fri Nov 17 13:32:45 2006 +0000 +++ b/stream/stream_radio.c Fri Nov 17 13:42:46 2006 +0000 @@ -820,7 +820,7 @@ if (get_frequency(priv,&frequency)!=STREAM_OK){ return 0; } - mp_msg(MSGT_RADIO, MSGL_V, MSGTR_RADIO_CurrentFreq,frequency); + mp_msg(MSGT_RADIO, MSGL_INFO, MSGTR_RADIO_CurrentFreq,frequency); return 1; }