summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-09-13 21:36:19 +0200
committerwm4 <wm4@nowhere>2013-09-20 21:18:32 +0200
commit11602fd31ac87553e2f2daf1b0cdc7e377da8226 (patch)
treea85b482ab9154c789dfa376c7b369e4f61c24eef
parent7973487a4c62f16f65043a4ea812e32132cb213a (diff)
downloadmpv-11602fd31ac87553e2f2daf1b0cdc7e377da8226.tar.bz2
mpv-11602fd31ac87553e2f2daf1b0cdc7e377da8226.tar.xz
mplayer: print a message when writing watch_later config for resume
Putting this into stable, because it might help debugging certain issues, and also making the user aware what's happening.
-rw-r--r--mpvcore/mplayer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c
index 676ccf9843..d7e55fe1bc 100644
--- a/mpvcore/mplayer.c
+++ b/mpvcore/mplayer.c
@@ -867,6 +867,8 @@ void mp_write_watch_later_conf(struct MPContext *mpctx)
if (!conffile)
goto exit;
+ mp_msg(MSGT_CPLAYER, MSGL_INFO, "Saving state.\n");
+
FILE *file = fopen(conffile, "wb");
if (!file)
goto exit;