From 0f08b26e40b31bb8af325ba62cfa32676c62ae86 Mon Sep 17 00:00:00 2001 From: Razvan Crainea Date: Thu, 26 May 2016 17:01:10 +0300 Subject: [PATCH] dbtext: convert DBG to ERR for better debugging --- modules/db_text/dbt_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/db_text/dbt_file.c b/modules/db_text/dbt_file.c index b1ca55ccdca..2abc08dc50f 100644 --- a/modules/db_text/dbt_file.c +++ b/modules/db_text/dbt_file.c @@ -499,7 +499,7 @@ dbt_table_p dbt_load_file(const str *tbn, const str *dbn) // memory leak?!?! with last incomplete row if(fin) fclose(fin); - LM_DBG("error at row=%d col=%d c=%c\n", crow+1, ccol+1, c); + LM_ERR("error at row=%d col=%d c=%c\n", crow+1, ccol+1, c); if(dtp) dbt_table_free(dtp); return NULL;