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 47c66e6 commit 000f918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/db_text/dbt_file.c
Expand Up @@ -501,7 +501,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 000f918

Please sign in to comment.