disable debug
This commit is contained in:
parent
8bf11c0512
commit
423a809e7e
@ -47,7 +47,7 @@ func main() {
|
||||
|
||||
cmd := exec.Command("node", path.Join(cwd, "ts/dist/index.js"))
|
||||
|
||||
ipc, err := kittenipc.NewParent(cmd, &kittenipc.Options{DebugMessages: true}, &localApi)
|
||||
ipc, err := kittenipc.NewParent(cmd, &kittenipc.Options{DebugMessages: false}, &localApi)
|
||||
if err != nil {
|
||||
log.Panic(err)
|
||||
}
|
||||
|
||||
@ -28,7 +28,7 @@ class TsIpcApi {
|
||||
|
||||
async function main() {
|
||||
const localApi = new TsIpcApi();
|
||||
const ipc = new ChildIPC({debugMessages: true}, localApi);
|
||||
const ipc = new ChildIPC({debugMessages: false}, localApi);
|
||||
const remoteApi = new GoIpcApi(ipc);
|
||||
|
||||
await ipc.start();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user