config_unknown_log_level

Diagnostic `nanook::config::unknown_log_level`

Summary

unknown log level `{0}`

Details

When this fires

[agent.log] in nanook.toml set level = "..." to a value the LogLevel enum doesn't accept. The variants are debug, info, warn, error (see crates/nanook-core/src/config/agent.rs). No trace, no verbose, no critical. Surfaces during nanook check and nanook run when the agent config gets parsed.

What to check

Lowercase, one of debug, info, warn, error. To go quieter than error, drop the field, default is info and the runtime tracing filter handles the rest.

[agent.log]
level = "warn"
format = "text"