Add debug log ring buffer with timestamps, log CLI subcommand

This commit is contained in:
Ian Gulliver
2026-04-07 09:18:43 +09:00
parent ffcbaf0665
commit d215ddc6f2
12 changed files with 128 additions and 9 deletions

View File

@@ -93,6 +93,10 @@ func (c *Client) Info() (*ResponseInfo, error) {
return roundTrip[ResponseInfo](c, &RequestInfo{})
}
func (c *Client) Log() (*ResponseLog, error) {
return roundTrip[ResponseLog](c, &RequestLog{})
}
func (c *Client) Test(name string) (*ResponseTest, error) {
return roundTrip[ResponseTest](c, &RequestTest{Name: name})
}