From f83b62e3c0f0c16511a87af96220c1716df38d3b Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 27 Oct 2019 20:17:29 -0400 Subject: [PATCH] set process title on constructor --- src/Client.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client.ts b/src/Client.ts index 294f506..4d66bad 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -27,6 +27,7 @@ export default class Client extends Eris.Client { constructor() { super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' }); + process.title = 'cloudservices'; this.config = config; this.util = new Util(this); this.commands = new Map();