proxy: Enable JSON logging by default (#11772)

This does not affect local_proxy.
This commit is contained in:
Folke Behrens
2025-04-29 13:11:24 +00:00
committed by GitHub
parent 0b35929211
commit 09247de8d5
2 changed files with 3 additions and 4 deletions

View File

@@ -132,11 +132,10 @@ impl Drop for LoggingGuard {
}
}
// TODO: make JSON the default
#[derive(Copy, Clone, PartialEq, Eq, Default, Debug)]
enum LogFormat {
Text,
#[default]
Text = 1,
Json,
}