[SDNC-5] Boron port and bug fixes
[sdnc/core.git] / dblib / provider / src / main / java / org / openecomp / sdnc / sli / resource / dblib / CachedDataSource.java
index ee01c1b..58a0aeb 100644 (file)
@@ -182,7 +182,7 @@ public abstract class CachedDataSource implements DataSource, SQLExecutionMonito
                        data.populate(rs);
                    // Point the rowset Cursor to the start
                        if(LOGGER.isDebugEnabled()){
-                               LOGGER.debug("SQL SUCCESS. count=" + data.size()+ ", time(ms): "+ (System.currentTimeMillis() - time));                 }
+                               LOGGER.debug("SQL SUCCESS. rows returned: " + data.size()+ ", time(ms): "+ (System.currentTimeMillis() - time));                        }
                } catch(SQLException exc){
                        if(LOGGER.isDebugEnabled()){
                                LOGGER.debug("SQL FAILURE. time(ms): "+ (System.currentTimeMillis() - time));
@@ -257,7 +257,7 @@ public abstract class CachedDataSource implements DataSource, SQLExecutionMonito
                        rs = ps.executeUpdate();
                    // Point the rowset Cursor to the start
                        if(LOGGER.isDebugEnabled()){
-                               LOGGER.debug("SQL SUCCESS. count=" + data.size()+ ", time(ms): "+ (System.currentTimeMillis() - time));
+                               LOGGER.debug("SQL SUCCESS. rows returned: " + data.size()+ ", time(ms): "+ (System.currentTimeMillis() - time));
                        }
                } catch(SQLException exc){
                        if(LOGGER.isDebugEnabled()){