Module: kamailio Branch: master Commit: ebf6483650c0cff88703e071383184b3f4ac7309 URL: https://github.com/kamailio/kamailio/commit/ebf6483650c0cff88703e071383184b3...
Author: Mickael Marrache mickaelmarrache@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2015-04-14T18:18:30+02:00
db_mongodb: change warn to info for log message on unhandled data type log
- less verbosity to syslog
---
Modified: modules/db_mongodb/mongodb_dbase.c
---
Diff: https://github.com/kamailio/kamailio/commit/ebf6483650c0cff88703e071383184b3... Patch: https://github.com/kamailio/kamailio/commit/ebf6483650c0cff88703e071383184b3...
---
diff --git a/modules/db_mongodb/mongodb_dbase.c b/modules/db_mongodb/mongodb_dbase.c index 5acc269..8dd0313 100644 --- a/modules/db_mongodb/mongodb_dbase.c +++ b/modules/db_mongodb/mongodb_dbase.c @@ -449,7 +449,7 @@ int db_mongodb_get_columns(const db1_con_t* _h, db1_res_t* _r) #endif
default: - LM_WARN("unhandled data type column (%.*s) type id (%d), " + LM_INFO("unhandled data type column (%.*s) type id (%d), " "use DB1_STRING as default\n", RES_NAMES(_r)[col]->len, RES_NAMES(_r)[col]->s, coltype); RES_TYPES(_r)[col] = DB1_STRING;