java.lang.Object
org.neo4j.driver.internal.logging.JULogger
- All Implemented Interfaces:
- Logger
- Direct Known Subclasses:
- ConsoleLogging.ConsoleLogger
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidLogs bolt messages sent and received by this driver.voidLogs debug message with throwable.voidLogs errors from this driver.voidLogs information from the driver.booleanReturn true if the debug level is enabled.booleanReturn true if the trace logging level is enabled.voidLogs binary sent and received by this driver.voidLogs warnings that happened when using the driver.voidLogs warnings that happened during using the driver
- 
Constructor Details- 
JULogger
 
- 
- 
Method Details- 
errorDescription copied from interface:LoggerLogs errors from this driver.Examples of errors logged using this method: - Network connection errors
- DNS resolution errors
- Cluster discovery errors
 
- 
infoDescription copied from interface:LoggerLogs information from the driver.Example of info messages logged using this method: - Driver creation and shutdown
- Cluster discovery progress
 - Specified by:
- infoin interface- Logger
- Parameters:
- format- the information message template. Can contain- String.format(String, Object...)-style placeholders, like "%s".
- params- parameters used in the information message.
 
- 
warnDescription copied from interface:LoggerLogs warnings that happened when using the driver.Example of info messages logged using this method: - Usage of deprecated APIs
- Transaction retry failures
 - Specified by:
- warnin interface- Logger
- Parameters:
- format- the warning message template. Can contain- String.format(String, Object...)-style placeholders, like "%s".
- params- parameters used in the warning message.
 
- 
warnDescription copied from interface:LoggerLogs warnings that happened during using the driverExample of info messages logged using this method: - Usage of deprecated APIs
- Transaction retry failures
 
- 
debugDescription copied from interface:LoggerLogs bolt messages sent and received by this driver. It is only enabled whenLogger.isDebugEnabled()returnstrue. This logging level generates a lot of log entries.Example of debug messages logged using this method: - Connection pool events, like creation, acquire and release of connections
- Messages sent to the database
- Messages received from the database
 - Specified by:
- debugin interface- Logger
- Parameters:
- format- the debug message template. Can contain- String.format(String, Object...)-style placeholders, like "%s".
- params- parameters used in generating the bolt message
 
- 
debugDescription copied from interface:LoggerLogs debug message with throwable.
- 
traceDescription copied from interface:LoggerLogs binary sent and received by this driver. It is only enabled whenLogger.isTraceEnabled()returnstrue. This logging level generates huge amount of log entries.Example of debug messages logged using this method: - Idle connection pings
- Server selection for load balancing
- Messages sent to the database with bytes in hex
- Messages received from the database with bytes in hex
 - Specified by:
- tracein interface- Logger
- Parameters:
- format- the trace message template. Can contain- String.format(String, Object...)-style placeholders, like "%s".
- params- parameters used in generating the hex message
 
- 
isTraceEnabledpublic boolean isTraceEnabled()Description copied from interface:LoggerReturn true if the trace logging level is enabled.- Specified by:
- isTraceEnabledin interface- Logger
- Returns:
- true if the trace logging level is enabled.
- See Also:
 
- 
isDebugEnabledpublic boolean isDebugEnabled()Description copied from interface:LoggerReturn true if the debug level is enabled.- Specified by:
- isDebugEnabledin interface- Logger
- Returns:
- true if the debug level is enabled.
- See Also:
 
 
-