mirror of https://github.com/mpv-player/mpv
command: reduce OSC/stats log spam
For some inexplicable reason, the OSC runs the expand-text command a _lot_. This command is logged at the log file default log level, so the log file can quickly fill up with these messages. It directly violates the mpv logging policy: per-frame (or similarly common) log messages should not be enabled by default for the log file. stats.lua uses the show-text command for some reason (instead of creating its own OSD layer). Explicitly reduce the log level for expand-text and some other commands. Also reduce the log level for commands triggered by mouse movement. The previous commit also contributed some to reduce log spam. Fixes: #4771
This commit is contained in:
parent
48f906249e
commit
3ed96cca88
|
@ -40,6 +40,7 @@ struct mp_cmd_def {
|
|||
bool vararg; // last argument can be given 0 to multiple times
|
||||
bool scalable;
|
||||
bool is_ignore;
|
||||
bool is_noisy; // reduce log level
|
||||
bool default_async; // default to MP_ASYNC flag if none set by user
|
||||
// If you set this, handler() must ensure mp_cmd_ctx_complete() is called
|
||||
// at some point (can be after handler() returns). If you don't set it, the
|
||||
|
|
|
@ -4341,8 +4341,8 @@ void run_command(struct MPContext *mpctx, struct mp_cmd *cmd,
|
|||
ctx->seek_msg_osd = auto_osd ? opts->osd_on_seek & 2 : ctx->msg_osd;
|
||||
ctx->seek_bar_osd = auto_osd ? opts->osd_on_seek & 1 : ctx->bar_osd;
|
||||
|
||||
mp_cmd_dump(mpctx->log, cmd->def->is_ignore ? MSGL_TRACE : MSGL_DEBUG,
|
||||
"Run command:", cmd);
|
||||
bool noise = cmd->def->is_noisy || cmd->mouse_move;
|
||||
mp_cmd_dump(mpctx->log, noise ? MSGL_TRACE : MSGL_DEBUG, "Run command:", cmd);
|
||||
|
||||
if (cmd->flags & MP_EXPAND_PROPERTIES) {
|
||||
for (int n = 0; n < cmd->nargs; n++) {
|
||||
|
@ -5528,7 +5528,7 @@ static void cmd_dump_cache_ab(void *p)
|
|||
#define OPT_BASE_STRUCT struct mp_cmd_arg
|
||||
|
||||
const struct mp_cmd_def mp_cmds[] = {
|
||||
{ "ignore", cmd_ignore, .is_ignore = true },
|
||||
{ "ignore", cmd_ignore, .is_ignore = true, .is_noisy = true, },
|
||||
|
||||
{ "seek", cmd_seek,
|
||||
{
|
||||
|
@ -5581,14 +5581,17 @@ const struct mp_cmd_def mp_cmds[] = {
|
|||
{ "sub-seek", cmd_sub_step_seek, { OPT_INT("skip", v.i, 0) },
|
||||
.allow_auto_repeat = true, .priv = &(const bool){false} },
|
||||
{ "print-text", cmd_print_text, { OPT_STRING("text", v.s, 0) },
|
||||
.allow_auto_repeat = true },
|
||||
.is_noisy = true, .allow_auto_repeat = true },
|
||||
{ "show-text", cmd_show_text, { OPT_STRING("text", v.s, 0),
|
||||
OPT_INT("duration", v.i, 0, OPTDEF_INT(-1)),
|
||||
OPT_INT("level", v.i, MP_CMD_OPT_ARG), },
|
||||
.allow_auto_repeat = true},
|
||||
{ "expand-text", cmd_expand_text, { OPT_STRING("text", v.s, 0) } },
|
||||
{ "expand-path", cmd_expand_path, { OPT_STRING("text", v.s, 0) } },
|
||||
{ "show-progress", cmd_show_progress, .allow_auto_repeat = true},
|
||||
.is_noisy = true, .allow_auto_repeat = true},
|
||||
{ "expand-text", cmd_expand_text, { OPT_STRING("text", v.s, 0) },
|
||||
.is_noisy = true },
|
||||
{ "expand-path", cmd_expand_path, { OPT_STRING("text", v.s, 0) },
|
||||
.is_noisy = true },
|
||||
{ "show-progress", cmd_show_progress, .allow_auto_repeat = true,
|
||||
.is_noisy = true },
|
||||
|
||||
{ "sub-add", cmd_track_add,
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue