aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-08-30 23:23:07 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2007-08-30 23:23:07 +0100
commit8ad90fbd65d544ac207d52780499df76db9adc6f (patch)
treefd0867c02768a50f98a777e8aacdd932337d710d
parentf2b171d39a6e93e7d05e421f81cd120276906e3e (diff)
From vmiklos: More verbose error message on plugin load failures.
-rw-r--r--protocols/nogaim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/nogaim.c b/protocols/nogaim.c
index a70d6eca..9ebd048e 100644
--- a/protocols/nogaim.c
+++ b/protocols/nogaim.c
@@ -47,7 +47,7 @@ gboolean load_plugin(char *path)
GModule *mod = g_module_open(path, G_MODULE_BIND_LAZY);
if(!mod) {
- log_message(LOGLVL_ERROR, "Can't find `%s', not loading", path);
+ log_message(LOGLVL_ERROR, "Can't find `%s', not loading (%s)\n", path, g_module_error());
return FALSE;
}