mirror of
https://github.com/Unitech/pm2.git
synced 2026-01-25 16:07:46 +00:00
9 lines
130 B
JavaScript
9 lines
130 B
JavaScript
|
|
setInterval(function() {
|
|
console.log('echo.js');
|
|
}, 500);
|
|
|
|
setInterval(function() {
|
|
console.error('echo.js-error');
|
|
}, 500);
|