libobs: Include plugin path in log error message

master
gxalpha 2022-07-29 03:06:53 +02:00 committed by Richard Stanway
parent ec3ea46516
commit de01cfc063
1 changed files with 4 additions and 2 deletions

View File

@ -299,8 +299,10 @@ static void load_all_callback(void *param, const struct obs_module_info2 *info)
}
if (!can_load_obs_plugin) {
blog(LOG_WARNING, "Skipping module '%s' due to possible "
"import conflicts");
blog(LOG_WARNING,
"Skipping module '%s' due to possible "
"import conflicts",
info->bin_path);
goto load_failure;
}