summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatural-Harmonia-Gropius <50797982+Natural-Harmonia-Gropius@users.noreply.github.com>2022-10-28 15:02:12 +0800
committerDudemanguy <random342@airmail.cc>2022-10-28 15:48:24 +0000
commite5e918954f05b92d5c4921949c70aef442c115a1 (patch)
tree9c70d114c08f8ed0632acd1b021a4688c0a66061
parentfd91776207cd6b8d82e09765e0c6e2ec5e23d881 (diff)
downloadmpv-e5e918954f05b92d5c4921949c70aef442c115a1.tar.bz2
mpv-e5e918954f05b92d5c4921949c70aef442c115a1.tar.xz
options: log profile name if there is no restore data
-rw-r--r--options/m_config_frontend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/m_config_frontend.c b/options/m_config_frontend.c
index 0506bcbfb3..5a6db46d83 100644
--- a/options/m_config_frontend.c
+++ b/options/m_config_frontend.c
@@ -1041,7 +1041,7 @@ int m_config_restore_profile(struct m_config *config, char *name)
return M_OPT_INVALID;
if (!p->backups)
- MP_WARN(config, "Profile contains no restore data.\n");
+ MP_WARN(config, "Profile '%s' contains no restore data.\n", name);
restore_backups(&p->backups, config);