pm2/examples/echo.js
Alexandre Strzelewicz 7b13bdf3fe README - fixes
2013-05-29 22:30:16 +08:00

10 lines
156 B
JavaScript

setInterval(function() {
console.log('log message from echo.js');
}, 800);
setInterval(function() {
console.error('err msg from echo.js');
}, 1500);