(d map[string]interface{})
| 105 | } |
| 106 | |
| 107 | func (t *cmdProxy) handleStart(d map[string]interface{}) { |
| 108 | c := t.newProxyClient(true) |
| 109 | |
| 110 | log.Debugf("call rpc start to proxy %s", t.addr) |
| 111 | if err := c.Start(); err != nil { |
| 112 | log.PanicErrorf(err, "call rpc start to proxy %s failed", t.addr) |
| 113 | } |
| 114 | log.Debugf("call rpc start to proxy OK") |
| 115 | } |
| 116 | |
| 117 | func (t *cmdProxy) handleLogLevel(d map[string]interface{}) { |
| 118 | c := t.newProxyClient(true) |
no test coverage detected