(data wshrpc.CommandControllerAppendOutputData)
| 59 | } |
| 60 | |
| 61 | func queueLogData(data wshrpc.CommandControllerAppendOutputData) { |
| 62 | select { |
| 63 | case outputChan <- data: |
| 64 | default: |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | func writeLogf(blockId string, format string, args []any) { |
| 69 | logStr := fmt.Sprintf(format, args...) |