aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-plugin.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-06-06 20:25:02 +0800
committerTor Lillqvist <tml@src.gnome.org>2008-06-06 20:25:02 +0800
commitab29a358fd25f22f8836d6a53a0601dab24e718c (patch)
tree4842b4e94fdda85cabb5f39fb6534f158666eea2 /e-util/e-plugin.c
parent14a52517906af2994cd2059b4ef9f98139cb3980 (diff)
downloadgsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar.gz
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar.bz2
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar.lz
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar.xz
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.tar.zst
gsoc2013-evolution-ab29a358fd25f22f8836d6a53a0601dab24e718c.zip
Tell which plugin it could not load in the warning message.
2008-06-06 Tor Lillqvist <tml@novell.com> * e-plugin.c (epl_loadmodule): Tell which plugin it could not load in the warning message. svn path=/trunk/; revision=35604
Diffstat (limited to 'e-util/e-plugin.c')
-rw-r--r--e-util/e-plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c
index 570d3b7e55..e55792c573 100644
--- a/e-util/e-plugin.c
+++ b/e-util/e-plugin.c
@@ -995,7 +995,7 @@ epl_loadmodule(EPlugin *ep)
return 0;
if ((epl->module = g_module_open(epl->location, 0)) == NULL) {
- g_warning("can't load plugin '%s'", g_module_error());
+ g_warning("can't load plugin '%s': %s", epl->location, g_module_error());
return -1;
}