(&self, name: &str, params: Params, kind: MethodKind, _t: TransportProtocol)
| 23 | } |
| 24 | |
| 25 | fn on_call(&self, name: &str, params: Params, kind: MethodKind, _t: TransportProtocol) { |
| 26 | tracing::info!( |
| 27 | "[Logger::on_call] method: '{}', params: {:?}, kind: {}", |
| 28 | name, |
| 29 | params, |
| 30 | kind |
| 31 | ); |
| 32 | } |
| 33 | |
| 34 | fn on_result( |
| 35 | &self, |
nothing calls this directly
no outgoing calls
no test coverage detected