"Configuring Health Check Tracing" section (see https://wolverinefx.io/guide/logging.html#configuring-health-check-tracing) mentions how to disable _wolverine_node_assignments_ messages but the code snippet looks like is duplicated from the next section "Controlling Message Specific Logging and Tracing" (see https://wolverinefx.io/guide/logging.html#controlling-message-specific-logging-and-tracing) I suspect the initial intent was to use the following instead. ``` var host = await Host.CreateDefaultBuilder() .UseWolverine(opts => { opts.Durability.NodeAssignmentHealthCheckTracingEnabled = false; }).StartAsync(); ```