| 38 | } |
| 39 | |
| 40 | type agentClientV1 struct { |
| 41 | ctx context.Context |
| 42 | client *agentsdk.Client |
| 43 | } |
| 44 | |
| 45 | func (c *agentClientV1) Send(level codersdk.LogLevel, log string) error { |
| 46 | lines := cutString(log, MaxCoderLogSize) |
nothing calls this directly
no outgoing calls
no test coverage detected