Continued to work on Lighthouse-Reth integration - Faced some issues with logging & spent most of my time trying to fix those, - while trying to run both of their(LH & reth) services parallelly on different threads, Reth wasn't logging anything at all (lighthouse's logs were fine though) - It took me some time to figure out that the actual problem was with logging,at first I thought there was something wrong with my multithreading method & wasted quite a good amount of time trying to fix something that wasn't even broken - @sproul helped me out & suggested that writing a log adapter that converts logs from Reth's format(`tracing`) to Lighthouse's(`slog`) might be the way to go - As `slog` is quite flexible, I should be able to initialise Lighthouse with a logger that connects to Reth's logger under the hood ### Resources - [Same ones from week-2](https://hackmd.io/@threehrsleep/epf_week2#Resources-that-I-went-through) ### Goal for next week - Work on implementing the log adapter