Use geany_debug() instead of g_warning() when a plugin has

unresolved symbols.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3077 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-10-13 15:52:32 +00:00
parent 6133c0b5d6
commit 8eab24c159
2 changed files with 4 additions and 1 deletions

View File

@ -18,6 +18,9 @@
Fix gcc warning, wrap line.
* src/plugins.c:
Tidy up plugin cleanup code.
* src/plugins.c:
Use geany_debug() instead of g_warning() when a plugin has
unresolved symbols.
2008-10-12 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -570,7 +570,7 @@ plugin_new(const gchar *fname, gboolean init_plugin, gboolean add_to_list)
module = g_module_open(fname, G_MODULE_BIND_LOCAL);
if (! module)
{
g_warning("%s", g_module_error());
geany_debug("Can't load plugin: %s", g_module_error());
return NULL;
}