Spring Boot 3 · Example Payload

Spring Boot 3 Set Logger Level Example

Temporarily sets the log level for com.example.service.UserService to DEBUG at runtime without restarting the application. This change persists only until the application restarts.

EnterpriseFrameworkJavaMicroservicesREST APISpring Boot

Spring Boot 3 Set Logger Level Example is an example object payload from Spring Boot 3, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponsedescription

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "http://localhost:8080/actuator/loggers/com.example.service.UserService",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "configuredLevel": "DEBUG"
    }
  },
  "response": {
    "status": 204,
    "headers": {},
    "body": null
  },
  "description": "Temporarily sets the log level for com.example.service.UserService to DEBUG at runtime without restarting the application. This change persists only until the application restarts."
}