diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-10 16:00:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-15 19:26:02 +0300 |
commit | 66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc (patch) | |
tree | a96ac8464a42c08ce2e2d66310633a1fa4da9065 /src/map/log.c | |
parent | 8c51c16bd34c2dd453bafc588e619d0b64ac0276 (diff) | |
download | hercules-66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc.tar.gz hercules-66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc.tar.bz2 hercules-66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc.tar.xz hercules-66ccb5adb45411adaef7ab45d2dc7fe1741ebdcc.zip |
Add support for plugin options in map server config (logs.conf).
Diffstat (limited to 'src/map/log.c')
-rw-r--r-- | src/map/log.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/log.c b/src/map/log.c index 3efcd09df..f0fd6795c 100644 --- a/src/map/log.c +++ b/src/map/log.c @@ -20,6 +20,7 @@ #include "../common/showmsg.h" #include "../common/sql.h" // SQL_INNODB #include "../common/strlib.h" +#include "../common/HPM.h" struct log_interface log_s; @@ -453,6 +454,8 @@ int log_config_read(const char* cfgName) { //support the import command, just like any other config else if( strcmpi(w1,"import") == 0 ) logs->config_read(w2); + else if (HPM->parseConf(w1, w2, HPCT_LOG)) + ; // handled by plugins else ShowWarning("Unknown setting '%s' in file %s\n", w1, cfgName); } |