Mercurial > mplayer.hg
changeset 29189:a7bb794af98d
sane verbosity levels for menu initialization
author | diego |
---|---|
date | Sat, 25 Apr 2009 12:34:24 +0000 |
parents | 15e8d8f0a1ea |
children | cb11a0c11f5e |
files | mplayer.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Thu Apr 23 22:19:53 2009 +0000 +++ b/mplayer.c Sat Apr 25 12:34:24 2009 +0000 @@ -2827,16 +2827,16 @@ #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; } }