Print system plugin path debug message on startup

This commit is contained in:
Nick Treleaven 2011-12-08 17:02:25 +00:00
parent d7f53f7f83
commit fb1c6c63e6

View File

@ -1086,6 +1086,11 @@ static void on_save_settings(GKeyFile *config)
void plugins_init(void) void plugins_init(void)
{ {
StashGroup *group; StashGroup *group;
gchar *path;
path = get_plugin_path();
geany_debug("System plugin path: %s", path);
g_free(path);
group = stash_group_new("plugins"); group = stash_group_new("plugins");
configuration_add_pref_group(group, TRUE); configuration_add_pref_group(group, TRUE);