Skip to content

Commit

Permalink
change LADSPA/LV2 plugins log message level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Aug 24, 2024
1 parent 755605b commit 241081d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/modules/jackrack/plugin_mgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ plugin_mgr_t *plugin_mgr_new()
plugin_mgr_get_path_plugins(pm);

if (!pm->all_plugins)
mlt_log_warning(
NULL, "No LADSPA plugins were found!\n\nCheck your LADSPA_PATH environment variable.\n");
mlt_log_info(
NULL, "No LADSPA plugins were found! Check your LADSPA_PATH environment variable.\n");
else
pm->all_plugins = g_slist_sort(pm->all_plugins, plugin_mgr_sort);

Expand Down Expand Up @@ -619,8 +619,8 @@ lv2_mgr_t *lv2_mgr_new()
lv2_mgr_get_path_plugins(pm);

if (!pm->all_plugins)
mlt_log_warning(
NULL, "No LV2 plugins were found!\n\nCheck your LV2_PATH environment variable.\n");
mlt_log_info(
NULL, "No LV2 plugins were found! Check your LV2_PATH environment variable.\n");
else
pm->all_plugins = g_slist_sort(pm->all_plugins, lv2_mgr_sort);

Expand Down
2 changes: 1 addition & 1 deletion src/modules/qt/gps_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1431,5 +1431,5 @@ int qxml_parse_file(gps_private_data gdata)
// crt_point->power);
//}

return 1;
return 1;
}

0 comments on commit 241081d

Please sign in to comment.