diff options
author | Stef Walter <stef@memberwebs.com> | 2008-09-13 23:18:28 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-09-13 23:18:28 +0000 |
commit | 5ed2451f47065dc6c38beb15d7625a866f887fec (patch) | |
tree | a4ac3fc53c5975c7b68c588f9f0700d903b89716 /plugin | |
parent | c9c90d2c3e82a1f717cb1ce216d856b0d02f8186 (diff) |
Don't display message whenever starting up unless in debug mode.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin/plugin.c b/plugin/plugin.c index 7cb2848..fb49085 100644 --- a/plugin/plugin.c +++ b/plugin/plugin.c @@ -388,7 +388,9 @@ plugin_init (Slapi_PBlock *pb) return -1; } - log_plugin ("%s initialized", PLUGIN_NAME); +#ifdef _DEBUG + log_trace ("%s initialized", PLUGIN_NAME); +#endif return 0; } |