Java: Logback Usage

Write logs using the Logback framework.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Java

To learn how to install and use the client library for Logging, see Logging client libraries.

To authenticate to Logging, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.


importorg.slf4j.Logger;
importorg.slf4j.LoggerFactory;
publicclass Quickstart{
privatestaticfinalLoggerlogger=LoggerFactory.getLogger(Quickstart.class);
publicstaticvoidmain(String[]args){
logger.info("Logging INFO with Logback");
logger.error("Logging ERROR with Logback");
}
}

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.