|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Logger | |
|---|---|
| com.bristle.javalib.log | |
| com.bristle.javalib.sql | |
| com.bristle.javalib.sql.oracle | |
| com.bristle.javalib.xml | |
| Uses of Logger in com.bristle.javalib.log |
|---|
| Methods in com.bristle.javalib.log that return Logger | |
|---|---|
Logger |
LoggerFinder.find()
Find an existing Logger, searching first the Session context of the previously specified HttpServletRequest (if any), then the ServletContext (application context) of the servlet associated with that HttpServletRequest (if any), then the Logger global singleton (if any), returning null if no Logger is found in any of those places. |
Logger |
LoggerFinder.findSafely()
Find an existing Logger, suppressing all possible errors. |
Logger |
LoggerUtil.getLogger()
Get the Logger. |
static Logger |
Logger.getSingleton()
Get the singleton Logger, if any. |
| Methods in com.bristle.javalib.log with parameters of type Logger | |
|---|---|
static void |
Logger.logErrorSafely(Logger logger,
int intLogLevel,
String strMsg,
Throwable e)
Log an error message, suppressing all possible errors, even the error of passing a null value for logger. |
static void |
Logger.logSafely(Logger logger,
int intLogLevel,
String strMsg)
Log a message, suppressing all possible errors, even the error of passing a null value for logger. |
void |
LoggerFinder.saveAsGlobalSingleton(Logger logger)
Save the specified Logger as the Logger global singleton, to be found by future calls to find(). |
void |
LoggerFinder.saveInServletContext(Logger logger)
Save the specified Logger in the ServletContext to be found by future calls to find(). |
void |
LoggerFinder.saveInSession(Logger logger)
Save the specified Logger in the Session to be found by future calls to find(). |
void |
LoggerUtil.setLogger(Logger logger)
Set the Logger. |
static void |
Logger.setSingleton(Logger logger)
Set the singleton Logger. |
| Constructors in com.bristle.javalib.log with parameters of type Logger | |
|---|---|
LoggerUtil(Logger logger)
Constructor. |
|
| Uses of Logger in com.bristle.javalib.sql |
|---|
| Fields in com.bristle.javalib.sql declared as Logger | |
|---|---|
static Logger |
ConnectionPoolUtil.loggerNO_LOGGING
|
| Methods in com.bristle.javalib.sql that return Logger | |
|---|---|
Logger |
ConnectionPoolUtil.getDefaultLogger()
Get the default Logger. |
| Methods in com.bristle.javalib.sql with parameters of type Logger | |
|---|---|
static void |
ConnectionPoolUtil.cleanupDBContext(ConnectionPoolUtil.DBContext dbContext,
boolean blnClose,
boolean blnDoneWithConnection,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool)
Cleanup the database objects, optionally closing the database connection. |
static void |
ConnectionPoolUtil.cleanupDBContext(ConnectionPoolUtil.DBContext dbContext,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool)
Cleanup the database objects, leaving the database connection open, and returning it to the connection pool, if any. |
static int |
ConnectionPoolUtil.executeSQL(Connection conn,
String strSQL,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database, execute a string of SQL, commit, and disconnect. |
static int |
ConnectionPoolUtil.getIntValueFromDB(Connection conn,
String strSQL,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database, get a single int value from the resultset returned by the specified SQL statement, and disconnect, returning the value. |
static ConnectionPoolUtil.DBContext |
ConnectionPoolUtil.getResultSet(Connection conn,
String strSQL,
int intType,
int intConcurrency,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database and get the data as a ResultSet with the specified type and concurrency. |
void |
ConnectionPoolUtil.setDefaultLogger(Logger loggerNew)
Set the default Logger. |
| Uses of Logger in com.bristle.javalib.sql.oracle |
|---|
| Methods in com.bristle.javalib.sql.oracle with parameters of type Logger | |
|---|---|
static ConnectionPoolUtil.DBContext |
OracleConnectionPoolUtil.getResultSetFromOracleFunction(Connection conn,
String strCall,
Logger logger,
int intLogLevelOfOperation,
ConnectionPool pool,
ConnectionPool.DBConfig dbconfig)
Connect to the database and get the data as a readonly forward-only ResultSet by calling an Oracle stored function that returns a ResultSet. |
| Uses of Logger in com.bristle.javalib.xml |
|---|
| Methods in com.bristle.javalib.xml with parameters of type Logger | |
|---|---|
boolean |
XMLWriter.logProgressAndCheckError(Logger logger,
int intCount)
Log the progress of the calling routine in generating its data stream, and check for errors that have occurred when the calling routine wrote to this XMLWriter. |
boolean |
XMLWriter.logProgressAndCheckError(Logger logger,
int intCount,
boolean blnForceLog)
Log the progress of the calling routine in generating its data stream, and check for errors that have occurred when the calling routine wrote to its XMLWriter. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||