Tag: cws_src680_dba24c
User: fs      
Date: 2007-10-29 09:44:17+0000
Modified:
   dba/connectivity/source/drivers/jdbc/JConnection.cxx
   dba/connectivity/source/drivers/jdbc/JStatement.cxx
   dba/connectivity/source/drivers/jdbc/PreparedStatement.cxx

Log:
 adjusted some log levels

File Changes:

Directory: /dba/connectivity/source/drivers/jdbc/
=================================================

File [changed]: JConnection.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/JConnection.cxx?r1=1.6.2.3&r2=1.6.2.4
Delta lines:  +3 -3
-------------------
--- JConnection.cxx     2007-10-15 13:33:15+0000        1.6.2.3
+++ JConnection.cxx     2007-10-29 09:44:13+0000        1.6.2.4
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: JConnection.cxx,v $
  *
- *  $Revision: 1.6.2.3 $
+ *  $Revision: 1.6.2.4 $
  *
- *  last change: $Author: fs $ $Date: 2007/10/15 13:33:15 $
+ *  last change: $Author: fs $ $Date: 2007/10/29 09:44:13 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -1098,7 +1098,7 @@
                                object = t.pEnv->NewGlobalRef( out );
 
             if ( object )
-                m_aLogger.log( LogLevel::FINE, STR_LOG_GOT_JDBC_CONNECTION, 
url );
+                m_aLogger.log( LogLevel::INFO, STR_LOG_GOT_JDBC_CONNECTION, 
url );
 
             m_aConnectionInfo = info;
                } //mID

File [changed]: JStatement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/JStatement.cxx?r1=1.3.34.1&r2=1.3.34.2
Delta lines:  +7 -7
-------------------
--- JStatement.cxx      2007-10-15 13:32:36+0000        1.3.34.1
+++ JStatement.cxx      2007-10-29 09:44:13+0000        1.3.34.2
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: JStatement.cxx,v $
  *
- *  $Revision: 1.3.34.1 $
+ *  $Revision: 1.3.34.2 $
  *
- *  last change: $Author: fs $ $Date: 2007/10/15 13:32:36 $
+ *  last change: $Author: fs $ $Date: 2007/10/29 09:44:13 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -160,7 +160,7 @@
 // 
-----------------------------------------------------------------------------
 void SAL_CALL java_sql_Statement_Base::disposing(void)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_CLOSING_STATEMENT );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_CLOSING_STATEMENT );
        java_sql_Statement_BASE::disposing();
        clearObject();
 }
@@ -307,7 +307,7 @@
 
 sal_Bool SAL_CALL java_sql_Statement_Base::execute( const ::rtl::OUString& sql 
) throw(SQLException, RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTE_STATEMENT, sql );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTE_STATEMENT, sql );
 
        jboolean out(sal_False);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
@@ -343,7 +343,7 @@
 
 Reference< XResultSet > SAL_CALL java_sql_Statement_Base::executeQuery( const 
::rtl::OUString& sql ) throw(SQLException, RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTE_QUERY, sql );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTE_QUERY, sql );
 
     jobject out(0);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
@@ -447,7 +447,7 @@
 
 sal_Int32 SAL_CALL java_sql_Statement_Base::executeUpdate( const 
::rtl::OUString& sql ) throw(SQLException, RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTE_UPDATE, sql );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTE_UPDATE, sql );
 
        jint out(0);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
@@ -810,7 +810,7 @@
 
//------------------------------------------------------------------------------
 void java_sql_Statement_Base::setEscapeProcessing(sal_Bool _par0) 
throw(SQLException, RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_SET_ESCAPE_PROCESSING, _par0 );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_SET_ESCAPE_PROCESSING, _par0 );
 
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
     m_bEscapeProcessing = _par0;

File [changed]: PreparedStatement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/PreparedStatement.cxx?r1=1.18&r2=1.18.34.1
Delta lines:  +6 -6
-------------------
--- PreparedStatement.cxx       2007-06-27 14:36:57+0000        1.18
+++ PreparedStatement.cxx       2007-10-29 09:44:13+0000        1.18.34.1
@@ -4,9 +4,9 @@
  *
  *  $RCSfile: PreparedStatement.cxx,v $
  *
- *  $Revision: 1.18 $
+ *  $Revision: 1.18.34.1 $
  *
- *  last change: $Author: hr $ $Date: 2007/06/27 14:36:57 $
+ *  last change: $Author: fs $ $Date: 2007/10/29 09:44:13 $
  *
  *  The Contents of this file are made available subject to
  *  the terms of GNU Lesser General Public License Version 2.1.
@@ -142,7 +142,7 @@
 
 sal_Bool SAL_CALL java_sql_PreparedStatement::execute(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTING_PREPARED );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTING_PREPARED );
 
        jboolean out(sal_False);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
@@ -167,7 +167,7 @@
 
 sal_Int32 SAL_CALL java_sql_PreparedStatement::executeUpdate(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTING_PREPARED_UPDATE );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTING_PREPARED_UPDATE );
 
     jint out(0);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
@@ -222,7 +222,7 @@
 
 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > 
SAL_CALL java_sql_PreparedStatement::executeQuery(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-    m_aLogger.log( LogLevel::INFO, STR_LOG_EXECUTING_PREPARED_QUERY );
+    m_aLogger.log( LogLevel::FINE, STR_LOG_EXECUTING_PREPARED_QUERY );
 
     jobject out(0);
     SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to