mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Fix websocket logger
This commit is contained in:
parent
3d0fd7071b
commit
eda6621989
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ import type {Server, WebSocket} from "ws";
|
||||||
import {inviteWindow, createInviteWindow} from "./window";
|
import {inviteWindow, createInviteWindow} from "./window";
|
||||||
|
|
||||||
async function wsLog(message: string, ...args: unknown[]) {
|
async function wsLog(message: string, ...args: unknown[]) {
|
||||||
console.log("WebSocket" + +message, ...args);
|
console.log("[WebSocket]" + message, ...args);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Generates an inclusive range (as `Array`) from `start` to `end`. */
|
/** Generates an inclusive range (as `Array`) from `start` to `end`. */
|
||||||
|
|
Loading…
Reference in a new issue