(surface: AppSurface, log: Logger, env_values?: Record<string, unknown> | undefined): void Log a startup summary from an AppSurface.
Logs route count, middleware count, env breakdown (when non-empty),
and event/channel counts (when non-empty). When env_values is provided,
non-secret values are logged and secrets are masked with ***.
surface
the app surface to summarize
type AppSurface
log
the logger instance
type
Loggerenv_values?
optional env values to log (secrets are masked)
type
Record<string, unknown> | undefinedoptional
returns
void