Open
Description
Currently, in the tracing macros to set a field that lives on self I need to do something like this:
let error = self.error;
error!(%error);
but ideally, I'd like to do:
error!(%self.error);
and these two should be equivalent. Currently this is not the case and we will get an output like: self.error = "..."
. I would like to propose that if the macros see self.
we remove the self.
part and just use the post fix value.