Module: sip-router
Branch: master
Commit: 1cd9a9c32a323e6811e1d536566ab88fa93625e4
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=1cd9a9c…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed May 2 14:21:23 2012 +0200
core: log message about dlflags from modules was made notice instead of warning
---
sr_module.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sr_module.c b/sr_module.c
index 8bc52d9..172b400 100644
--- a/sr_module.c
+++ b/sr_module.c
@@ -622,7 +622,7 @@ reload:
if (new_dlflags!=dlflags && new_dlflags!=DEFAULT_DLFLAGS) {
/* we have to reload the module */
dlclose(handle);
- WARN("%s: exports dlflags interface is deprecated and it will not"
+ NOTICE("%s: exports dlflags interface is deprecated and it will not"
" be supported in newer versions; consider using"
" mod_register() instead\n", path);
dlflags=new_dlflags;