diff --git a/e-util/ChangeLog b/e-util/ChangeLog index d923b0548e..038bee15f8 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2004-12-08 Not Zed + + * e-plugin.c (e_plugin_load_plugins): kill warning if we can't + open the path. + 2004-12-06 Not Zed * e-config.c (ec_rebuild): set the table spacings to 6 for diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 5948de45d8..0d74043b4d 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -452,7 +452,7 @@ e_plugin_load_plugins(void) dir = opendir(path); if (dir == NULL) { - g_warning("Could not find plugin path: %s", path); + /*g_warning("Could not find plugin path: %s", path);*/ continue; }