pm2/examples/001-test.js
2015-11-24 12:30:20 +01:00

13 lines
197 B
JavaScript

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