mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
13 lines
229 B
JavaScript
Executable File
13 lines
229 B
JavaScript
Executable File
|
|
|
|
setInterval(function() {
|
|
console.log('log message from echo.js');
|
|
console.warn({ json : true });
|
|
}, 1500);
|
|
|
|
setTimeout(function() {
|
|
setInterval(function() {
|
|
console.error('err msg from echo.js');
|
|
}, 1500);
|
|
}, 750);
|