The `org.eclipse.jetty.util.log.Logger` is a class in the Java programming language that belongs to the `org.eclipse.jetty.util.log` package. This class provides functionality for logging events and messages in a Jetty server or application. It serves as an interface for different logging implementations, allowing developers to choose their preferred logging framework, such as SLF4J or Log4j, for their Jetty-based applications. The `Logger` class enables developers to log different levels of messages, including debug, information, warning, and error, and provides methods to format and append log messages to the chosen logging framework. It also allows for configuring different loggers for specific Jetty components or features, providing detailed control over the logging output for better troubleshooting and monitoring of Jetty-based applications.
Java Logger - 30 examples found. These are the top rated real world Java examples of org.eclipse.jetty.util.log.Logger extracted from open source projects. You can rate examples to help us improve the quality of examples.