Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Commit

Permalink
[jdbc] Fix function name in log line
Browse files Browse the repository at this point in the history
  • Loading branch information
skazi0 committed Feb 25, 2019
1 parent c636a18 commit b5ae241
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ public List<ItemsVO> getItemTables() {
* MAPPERS ITEM *
****************/
public void updateItemTableNames(List<ItemVO> vol) {
logger.debug("JDBC::createItemTable");
logger.debug("JDBC::updateItemTableNames");
long timerStart = System.currentTimeMillis();
conf.getDBDAO().doUpdateItemTableNames(vol);
logTime("createItemTable", timerStart, System.currentTimeMillis());
logTime("updateItemTableNames", timerStart, System.currentTimeMillis());
}

public ItemVO createItemTable(ItemVO vo) {
Expand Down

0 comments on commit b5ae241

Please sign in to comment.