Skip to content

Commit

Permalink
Not sure why this didn't show up as errors in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
islathehut committed Oct 7, 2024
1 parent 69c0ba5 commit 56e8d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/desktop/src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,10 @@ app.on('ready', async () => {
})
logger.info('Forked backend, PID:', backendProcess.pid)

backendProcess.stdout.on('data', (chunk: any) => {
backendProcess.stdout?.on('data', (chunk: any) => {
logger.info(`STDOUT FROM FORKED PROCESS`, chunk)
})
backendProcess.stderr.on('data', (chunk: any) => {
backendProcess.stderr?.on('data', (chunk: any) => {
logger.info(`STDERR FROM FORKED PROCESS`, chunk)
})

Expand Down

0 comments on commit 56e8d40

Please sign in to comment.