action apicurio_set_log_configuration { label: "Set a logger's configuration" description: "Configures the logger referenced by the provided logger name with the given configuration." provider: apicurio method: PUT path: "/admin/loggers/{logger}" encoding: json input: { type: "object" required: ["level"] properties: { level: { type: "string" enum: ["DEBUG", "TRACE", "WARN", "ERROR", "SEVERE", "WARNING", "INFO", "CONFIG", "FINE", "FINER", "FINEST"] } } } output: { type: "object" } }