Skip to content

Commit

Permalink
fix: extra error log
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderMatt committed Sep 20, 2024
1 parent 3fb97db commit b7ed0aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/operator/watcherutil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,11 @@ export default abstract class Operator {
})
}

await startWatch()
try {
await startWatch()
} catch (error) {
console.log('ERROR OCCURED DURING STARTWATCH: ', error)
}

console.log(`watching resource ${id}`)
}
Expand Down

0 comments on commit b7ed0aa

Please sign in to comment.