This came up during the demo dry-run today. We had an issue whose resolution might have been helped by inspecting trace-level log messages, which we can get via slog-dtrace. However, most (all?) of our crates actually filter out anything above debug at compile time, using this slog feature. We should probably allow more verbose logging in release mode, at least until we have specific reason to remove them.
This came up during the demo dry-run today. We had an issue whose resolution might have been helped by inspecting trace-level log messages, which we can get via
slog-dtrace. However, most (all?) of our crates actually filter out anything above debug at compile time, using thisslogfeature. We should probably allow more verbose logging in release mode, at least until we have specific reason to remove them.