File upload and code refactoring

This commit is contained in:
2022-06-15 12:02:50 +02:00
parent c0982d7098
commit b6ff444526
6 changed files with 100 additions and 28 deletions

View File

@@ -110,7 +110,7 @@ class Process {
*/
async kill() {
spawn('kill', [String(this.pid)]).on('exit', () => {
log.info('db', `Deleted ${this.pid} because SIGKILL`)
log.info('proc', `Stopped ${this.pid} because SIGKILL`)
});
}