K.I. (Dennis) Jung

Results 58 comments of K.I. (Dennis) Jung

@ysimonson how do you think of format like following? https://github.com/indradb/indradb/pull/298

@ysimonson hello, this is some example logs... ``` [2023-06-04T03:07:38Z INFO indradb_server] Server listening at grpc://127.0.0.1:27615 [2023-06-04T03:07:44Z INFO indradb_proto::server] Call 'create_vertex' [2023-06-04T03:07:44Z INFO indradb::memory::datastore] Create vertex : Vertex { id: 0e09060e-0e0b-0b03-0c01-020c06020904,...

@ysimonson okay, understood. Than could you think of good way to make things go on? What I was thinking is, - Show running information, to help admin check service is...

@ysimonson got it. I'll make simple draft soon 🆗

@mgattozzi looks good! Could you give some example part where `Raw` type is being used for deserialization? (I could find in `config.rs`, but please let me know if there's more)

@mgattozzi just want to get sure about implementation. Currently `TomlFastlyConfig` is ``` #[derive(Deserialize)] struct TomlFastlyConfig { local_server: Option, ... ... } ``` and ``` let local_server = local_server .map(TryInto::try_into) .transpose()?...

@cratelyn > the method and URL of a client request is logged already. debug-level messages about headers would be a great next step! Okay, as you've commented information about 'body'...

@cratelyn sorry a question. Seems `handle_request` which calls `run_guest` only receives 'request.body' data. Where can I find the part which receives header?