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:
parent
6133c0b5d6
commit
8eab24c159
@ -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>
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user