We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5b87a7 commit 9d27385Copy full SHA for 9d27385
examples/typescript/watch/watch-example.ts
@@ -29,9 +29,9 @@ const req = await watch
29
// done callback is called if the watch terminates either normally or with an error
30
(err) => {
31
if (err) {
32
- console.log(err);
+ console.error(err);
33
} else {
34
- console.log('watch done')
+ console.log('watch finished normally')
35
}
36
},
37
)
0 commit comments