summaryrefslogtreecommitdiffstats
path: root/options/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/path.c')
-rw-r--r--options/path.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/options/path.c b/options/path.c
index 5248a1d75b..dac9238cf9 100644
--- a/options/path.c
+++ b/options/path.c
@@ -98,7 +98,7 @@ char *mp_find_user_config_file(void *talloc_ctx, struct mpv_global *global,
if (res)
res = mp_path_join(talloc_ctx, res, filename);
talloc_free(tmp);
- MP_VERBOSE(global, "config path: '%s' -> '%s'\n", filename, res ? res : "-");
+ MP_DBG(global, "config path: '%s' -> '%s'\n", filename, res ? res : "-");
return res;
}
@@ -119,12 +119,12 @@ static char **mp_find_all_config_files_limited(void *talloc_ctx,
char *file = mp_path_join_bstr(ret, bstr0(dir), fn);
if (mp_path_exists(file)) {
- MP_VERBOSE(global, "config path: '%.*s' -> '%s'\n",
- BSTR_P(fn), file);
+ MP_DBG(global, "config path: '%.*s' -> '%s'\n",
+ BSTR_P(fn), file);
MP_TARRAY_APPEND(NULL, ret, num_ret, file);
} else {
- MP_VERBOSE(global, "config path: '%.*s' -/-> '%s'\n",
- BSTR_P(fn), file);
+ MP_DBG(global, "config path: '%.*s' -/-> '%s'\n",
+ BSTR_P(fn), file);
}
}
}
@@ -189,7 +189,7 @@ char *mp_get_user_path(void *talloc_ctx, struct mpv_global *global,
}
if (!res)
res = talloc_strdup(talloc_ctx, path);
- MP_VERBOSE(global, "user path: '%s' -> '%s'\n", path, res);
+ MP_DBG(global, "user path: '%s' -> '%s'\n", path, res);
return res;
}