Integrate tracing (#6339)

Tracing Integration
- [reference](5bbf1859e9/projects/project-ideas.md (L297))


  - [x] replace slog & log with tracing throughout the codebase
- [x] implement custom crit log
- [x] make relevant changes in the formatter
- [x] replace sloggers
- [x] re-write SSE logging components

cc: @macladson @eserilev
This commit is contained in:
ThreeHrSleep
2025-03-13 04:01:05 +05:30
committed by GitHub
parent f23f984f85
commit d60c24ef1c
241 changed files with 9485 additions and 9328 deletions

View File

@@ -84,7 +84,6 @@ members = [
"testing/node_test_rig",
"testing/simulator",
"testing/state_transition_vectors",
"testing/test-test_logger",
"testing/validator_test_rig",
"testing/web3signer_tests",
@@ -151,6 +150,7 @@ hyper = "1"
itertools = "0.10"
libsecp256k1 = "0.7"
log = "0.4"
logroller = "0.1.4"
lru = "0.12"
maplit = "1"
milhouse = "0.5"
@@ -181,14 +181,6 @@ serde_json = "1"
serde_repr = "0.1"
serde_yaml = "0.9"
sha2 = "0.9"
slog = { version = "2", features = [
"max_level_debug",
"release_max_level_debug",
"nested-values",
] }
slog-async = "2"
slog-term = "2"
sloggers = { version = "2", features = ["json"] }
smallvec = { version = "1.11.2", features = ["arbitrary"] }
snap = "1"
ssz_types = "0.10"
@@ -209,7 +201,7 @@ tracing = "0.1.40"
tracing-appender = "0.2"
tracing-core = "0.1"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tree_hash = "0.9"
tree_hash_derive = "0.9"
url = "2"