Absolutely. That’s understandable. But, the point I was trying to make above was that we should be trying to move away from serialized logging on console, and towards RPC tracing. So, think about when you feel like you need to have a log, can it be converted to an x.Trace? Tracing provides us with better debugging information, where we have the logs from the entire life of an RPC. So, if we need to debug why a particular RPC is slow, we can look at all the logs over the lifetime of that RPC and figure out which step took longer.
Normal logs, even with file info won’t give us anything close to this.