aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/plugin_loader.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2008-05-13 09:14:36 +0000
committerMartin Willi <martin@strongswan.org>2008-05-13 09:14:36 +0000
commit02ffd896420239ec6941e5ec2c4030611ed6eaf6 (patch)
tree194c22f93b90bacbc66ca560e8bac9365b934832 /src/libstrongswan/plugins/plugin_loader.c
parent4d4fc2eaa18f2c643d95684022e424bd7441eef3 (diff)
downloadstrongswan-02ffd896420239ec6941e5ec2c4030611ed6eaf6.tar.bz2
strongswan-02ffd896420239ec6941e5ec2c4030611ed6eaf6.tar.xz
decreased plugin load verbosity
Diffstat (limited to 'src/libstrongswan/plugins/plugin_loader.c')
-rw-r--r--src/libstrongswan/plugins/plugin_loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/plugin_loader.c b/src/libstrongswan/plugins/plugin_loader.c
index 215ed53d6..3ed30c572 100644
--- a/src/libstrongswan/plugins/plugin_loader.c
+++ b/src/libstrongswan/plugins/plugin_loader.c
@@ -57,7 +57,7 @@ static int load(private_plugin_loader_t *this, char *path, char *prefix)
DBG1("opening plugin directory %s failed", path);
return 0;
}
- DBG1("loading plugins from %s", path);
+ DBG2("loading plugins from %s", path);
while (enumerator->enumerate(enumerator, &rel, &file, NULL))
{
plugin_t *plugin;
@@ -92,7 +92,7 @@ static int load(private_plugin_loader_t *this, char *path, char *prefix)
dlclose(handle);
continue;
}
- DBG1("plugin %s loaded successfully", rel);
+ DBG2("plugin %s loaded successfully", rel);
/* insert in front to destroy them in reverse order */
this->plugins->insert_last(this->plugins, plugin);
/* we do not store or free dlopen() handles, leak_detective requires