aboutsummaryrefslogtreecommitdiff
path: root/src/Utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils.ts')
-rw-r--r--src/Utils.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Utils.ts b/src/Utils.ts
index 1e69cfbfe..fc12c1e14 100644
--- a/src/Utils.ts
+++ b/src/Utils.ts
@@ -240,15 +240,6 @@ export namespace Utils {
handler([arg, loggingCallback('S sending', fn, message.Name)]);
});
}
-
- export function InjectLogger(socket: Socket, color: string) {
- const on = socket.on;
- socket.on = function (event: string | symbol, listener: (...args: any[]) => void) {
- console.log(color, event);
- on(event, listener);
- return socket;
- };
- }
}
export function OmitKeys(obj: any, keys: string[], addKeyFunc?: (dup: any) => void): { omit: any, extract: any } {