refactor(router): added status_code to golden_log_line (#3681)

This commit is contained in:
Sahkal Poddar
2024-02-19 13:34:47 +05:30
committed by GitHub
parent 0a7625ff8c
commit 8038b48a54
3 changed files with 6 additions and 2 deletions

View File

@ -92,12 +92,13 @@ impl Visit for Storage<'_> {
}
}
const PERSISTENT_KEYS: [&str; 5] = [
const PERSISTENT_KEYS: [&str; 6] = [
"payment_id",
"connector_name",
"merchant_id",
"flow",
"payment_method",
"status_code",
];
impl<S: Subscriber + for<'a> tracing_subscriber::registry::LookupSpan<'a>> Layer<S>