Skip to content

Commit

Permalink
dbtext: convert DBG to ERR for better debugging
Browse files Browse the repository at this point in the history
(cherry picked from commit 0f08b26)
  • Loading branch information
razvancrainea committed May 26, 2016
1 parent 270b757 commit 1bfd454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/db_text/dbt_file.c
Expand Up @@ -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;
Expand Down

0 comments on commit 1bfd454

Please sign in to comment.