[MPlayer-cvslog] r29231 - trunk/mplayer.c
diego
subversion at mplayerhq.hu
Sat Apr 25 14:34:25 CEST 2009
Author: diego
Date: Sat Apr 25 14:34:24 2009
New Revision: 29231
Log:
sane verbosity levels for menu initialization
Modified:
trunk/mplayer.c
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c Sat Apr 25 13:27:23 2009 (r29230)
+++ trunk/mplayer.c Sat Apr 25 14:34:24 2009 (r29231)
@@ -2827,16 +2827,16 @@ stream_set_interrupt_callback(mp_input_c
#ifdef CONFIG_MENU
if(use_menu) {
if(menu_cfg && menu_init(mpctx, menu_cfg))
- mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
+ mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
else {
menu_cfg = get_path("menu.conf");
if(menu_init(mpctx, menu_cfg))
- mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, menu_cfg);
+ mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, menu_cfg);
else {
if(menu_init(mpctx, MPLAYER_CONFDIR "/menu.conf"))
- mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
+ mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_MenuInitialized, MPLAYER_CONFDIR"/menu.conf");
else {
- mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_MenuInitFailed);
+ mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_MenuInitFailed);
use_menu = 0;
}
}
More information about the MPlayer-cvslog
mailing list