diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-18 12:50:41 +0200 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-18 16:21:42 +0200 |
commit | 3d01edb5ed4c9eaf43b1a1d6049b5ae497372dc7 (patch) | |
tree | c1445465944ea563178cff5aa2a0b1125c808b47 /connectivity | |
parent | 6fbff56dea641bb0ee27bf7c2e6d864821b856bc (diff) |
SAL_INFO in checkRowIndex spams output.
Change-Id: Ie23cc727acaaa8104101c8c69d26094f90523ac5
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/FResultSet.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/FResultSet.cxx b/connectivity/source/drivers/firebird/FResultSet.cxx index 213efee3a1df..07b11eb53713 100644 --- a/connectivity/source/drivers/firebird/FResultSet.cxx +++ b/connectivity/source/drivers/firebird/FResultSet.cxx @@ -345,9 +345,6 @@ void SAL_CALL OResultSet::checkRowIndex(sal_Bool mustBeOnValidRow) checkDisposed(OResultSet_BASE::rBHelper.bDisposed); ensureDataAvailable(); - SAL_INFO("connectivity.firebird", "Checking if row " << m_currentRow << - "/" << m_rowCount << " is valid."); - if(mustBeOnValidRow) { if((m_currentRow < 1) || (m_currentRow > m_rowCount)) |