projects
/
platform
/
core
/
context
/
context-service.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cbd055
)
Fix a dlog tag to print DB row_id properly
53/49753/1
author
Mu-Woong
<muwoong.lee@samsung.com>
Tue, 20 Oct 2015 04:33:31 +0000
(13:33 +0900)
committer
Mu-Woong
<muwoong.lee@samsung.com>
Tue, 20 Oct 2015 04:33:31 +0000
(13:33 +0900)
Change-Id: Iccf03744c854cf78b31b4a5e185daefbf43fe2be
Signed-off-by: Mu-Woong <muwoong.lee@samsung.com>
src/db_mgr_impl.cpp
patch
|
blob
|
history
diff --git
a/src/db_mgr_impl.cpp
b/src/db_mgr_impl.cpp
index b2290393a07b679cb410fd3591543d747ea60605..795bacccd65e633b697003995b60a4d27779798f 100644
(file)
--- a/
src/db_mgr_impl.cpp
+++ b/
src/db_mgr_impl.cpp
@@
-364,7
+364,7
@@
bool ctx::db_manager_impl::insert_sync(const char* table_name, json& record, int
*row_id = -1;
query_result.at(0).get(NULL, "seq", row_id);
- _D("RowId: %d", *row_id);
+ _D("RowId: %
ll
d", *row_id);
return true;
}