Browse Source

db_mongodb: change warn to info for log message on unhandled data type log

- less verbosity to syslog
Mickael Marrache 10 years ago
parent
commit
ebf6483650
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/db_mongodb/mongodb_dbase.c

+ 1 - 1
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
 #endif
 
 
 			default:
 			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,
 						"use DB1_STRING as default\n", RES_NAMES(_r)[col]->len,
 						RES_NAMES(_r)[col]->s, coltype);
 						RES_NAMES(_r)[col]->s, coltype);
 				RES_TYPES(_r)[col] = DB1_STRING;
 				RES_TYPES(_r)[col] = DB1_STRING;