Skip to content

Commit

Permalink
Merge pull request #156 from lovelle/1.8
Browse files Browse the repository at this point in the history
Add new line in dbt_base.c for info message log
  • Loading branch information
bogdan-iancu committed Jan 10, 2014
1 parent a2a234e commit 8978023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/db_text/dbt_base.c
Expand Up @@ -95,7 +95,7 @@ db_con_t* dbt_init(const str* _sqlurl)
memset(_res, 0, sizeof(db_con_t) + sizeof(dbt_con_t));
_res->tail = (unsigned long)((char*)_res+sizeof(db_con_t));

LM_INFO("using database at: %.*s", _s.len, _s.s);
LM_INFO("using database at: %.*s\n", _s.len, _s.s);
DBT_CON_CONNECTION(_res) = dbt_cache_get_db(&_s);
if (!DBT_CON_CONNECTION(_res))
{
Expand Down

0 comments on commit 8978023

Please sign in to comment.