diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-20 12:46:28 +0200 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-21 18:47:12 +0200 |
commit | 2d632ed1d8e062050519a2d9296ffefd84ecb411 (patch) | |
tree | f0df84515635b566f4fff41a5790882c7d5981c8 /connectivity | |
parent | 2965924e39eee456acab7e83ffee591176b0dbc9 (diff) |
Remove unneeded SAL_INFO/WARN/DEBUG.
Change-Id: I5212105c14619000a177433ad0326cae6bec3a6c
Diffstat (limited to 'connectivity')
4 files changed, 0 insertions, 32 deletions
diff --git a/connectivity/source/drivers/firebird/FConnection.cxx b/connectivity/source/drivers/firebird/FConnection.cxx index dfe0ffa80cc6..f09663b59b4a 100644 --- a/connectivity/source/drivers/firebird/FConnection.cxx +++ b/connectivity/source/drivers/firebird/FConnection.cxx @@ -120,8 +120,6 @@ OConnection::~OConnection() void SAL_CALL OConnection::release() throw() { - SAL_INFO("connectivity.firebird", "release()."); - relase_ChildImpl(); } // ----------------------------------------------------------------------------- @@ -475,8 +473,6 @@ sal_Bool SAL_CALL OConnection::isClosed( ) throw(SQLException, RuntimeException // -------------------------------------------------------------------------------- Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( ) throw(SQLException, RuntimeException) { - SAL_INFO("connectivity.firebird", "getMetaData()."); - MutexGuard aGuard( m_aMutex ); checkDisposed(OConnection_BASE::rBHelper.bDisposed); diff --git a/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx b/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx index 081626df7ddc..090a33b4ce3c 100644 --- a/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx +++ b/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx @@ -911,29 +911,6 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTables( OUString desc = xRow->getString( 5 ); rows++; - if (rows < 10) - { - if ( 1 == rows ) - SAL_DEBUG("COLUMNS | " - "schema | " - "TABLENAME | " - "SF| " - "TT| " - "desc |"); - SAL_DEBUG("Row " << OUString::number(0).concat(OUString::number(rows)) << ": | " - << schema << " | " - << aTableName << " | " - << systemFlag << " | " - << tableType << " | " - << desc << " |"); - } - else - SAL_DEBUG("Row " << rows << ": | " - << schema << " | " - << aTableName << " | " - << systemFlag << " | " - << tableType << " | " - << desc << " |"); OUString aTableType; if( 1 == systemFlag ) diff --git a/connectivity/source/drivers/firebird/FResultSet.cxx b/connectivity/source/drivers/firebird/FResultSet.cxx index 817d042f5ba6..857335ac003d 100644 --- a/connectivity/source/drivers/firebird/FResultSet.cxx +++ b/connectivity/source/drivers/firebird/FResultSet.cxx @@ -134,8 +134,6 @@ sal_Bool SAL_CALL OResultSet::next() throw(SQLException, RuntimeException) MutexGuard aGuard(m_pConnection->getMutex()); checkDisposed(OResultSet_BASE::rBHelper.bDisposed); - SAL_INFO("connectivity.firebird", "Fetching row from cursor"); - m_currentRow++; ISC_STATUS fetchStat = isc_dsql_fetch(m_statusVector, @@ -343,7 +341,6 @@ void SAL_CALL OResultSet::checkRowIndex() // ------------------------------------------------------------------------- void OResultSet::disposing(void) { - SAL_INFO("connectivity.firebird", "disposing()."); OPropertySetHelper::disposing(); diff --git a/connectivity/source/drivers/firebird/FStatement.cxx b/connectivity/source/drivers/firebird/FStatement.cxx index eeb0df0b50eb..501e0414d049 100644 --- a/connectivity/source/drivers/firebird/FStatement.cxx +++ b/connectivity/source/drivers/firebird/FStatement.cxx @@ -99,8 +99,6 @@ void OStatement_Base::disposeResultSet() void OStatement_BASE2::disposing() { - SAL_INFO("connectivity.firebird", "disposing()."); - MutexGuard aGuard(m_pConnection->getMutex()); disposeResultSet(); |