(pid)
| 235 | } |
| 236 | |
| 237 | function processIsRunning(pid) { |
| 238 | try { |
| 239 | process.kill(pid, 0); |
| 240 | return true; |
| 241 | } catch { |
| 242 | return false; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | function printRecentServiceLog() { |
| 247 | const lines = recentServiceLogLines(); |
no outgoing calls
no test coverage detected