vavrtom commented on a change in pull request #36: QPID-8361: [Broker-J] Create a developer guide for Qpid Broker-J URL: https://github.com/apache/qpid-broker-j/pull/36#discussion_r326506479
########## File path: doc/developer-guide/src/main/markdown/architecture.md ########## @@ -544,3 +545,49 @@ other attributes. For example, `PortFactory` examines attribute `protocols` to i The Broker allows alternative implementations for various entities. For example, alternative implementations for `ProtocolEngine`, `MessageConverter`, `MessageFormat`, etc can be plugged into the `Broker`. Please, check Broker code for all extension points by building type hierarchy for `Pluggable`. + +## Logging + +Qpid Broker-J use **slf4j** API for logging. The **slf4j** abstraction allows to plug-in any logging framework. +The logback logging framework is used by the broker. However, it is optional. Any other framework can be used with +the Broker if required. + +`VirtualHost` logs can be segregated from other `VirtualHost` and `Broker` logs in order to isolate applications +on dedicated VirtualHosts from each other. Thus, specific `VirtualHost` users would be able to access their logs +without seeing Broker logs not related to the `VirtualHost` or logs from other applications on different VirtualHosts. + +The Broker defines a number of `ConfigutredObject` categories to be able to dynamically configure logging settings Review comment: Typo in 'ConfigutredObject' ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org