Logging Class |
Namespace: Bloomberglp.Blpapi
The Logging type exposes the following members.
Name | Description | |
---|---|---|
DeregisterCallback |
deregister a callback, the loglevel will not be reset and will continue to be the
the one that was last one.
| |
LogTestMessage |
Log a test message at the specified 'level'. Note that this function is intended
for testing of the logging configuration only.
| |
RegisterCallback |
register a callback with the specified 'thresholdLevel' as default threshold level
|
Logging.Callback cb = new Logging.Callback() { public void onMessage( long threadId, Level level, Datetime dateTime, String loggerName, String message) { // Do some processing } }; Logging.registerCallback(cb, Level.WARNING);