diff options
author | Ven <vendicated@riseup.net> | 2022-11-14 16:22:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 16:22:50 +0100 |
commit | a96f8a89f36ccb980334da2274385373aa3ffb24 (patch) | |
tree | e520f3be75eb2bbd9f3c4d3427f16861b8d7ab6c /src/utils | |
parent | 4642b54260a2258d8d0925dcfb5c6934fcf10835 (diff) | |
download | Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.gz Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.tar.bz2 Vencord-a96f8a89f36ccb980334da2274385373aa3ffb24.zip |
MessageLogger: fixes + ignoreSelf & ignoreBots option (#213)
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/Logger.ts (renamed from src/utils/logger.ts) | 0 | ||||
-rw-r--r-- | src/utils/index.ts | 3 | ||||
-rw-r--r-- | src/utils/updater.ts | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/utils/logger.ts b/src/utils/Logger.ts index 88ebb43..88ebb43 100644 --- a/src/utils/logger.ts +++ b/src/utils/Logger.ts diff --git a/src/utils/index.ts b/src/utils/index.ts index 22504ce..41e1597 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -21,9 +21,10 @@ export * as Constants from "./constants"; export * from "./debounce"; export * as Discord from "./discord"; export { default as IpcEvents } from "./IpcEvents"; -export { default as Logger } from "./logger"; +export { default as Logger } from "./Logger"; export * from "./misc"; export * as Modals from "./modal"; export * from "./onceDefined"; export * from "./proxyLazy"; export * from "./Queue"; + diff --git a/src/utils/updater.ts b/src/utils/updater.ts index ea2319f..2ea4953 100644 --- a/src/utils/updater.ts +++ b/src/utils/updater.ts @@ -19,7 +19,7 @@ import gitHash from "~git-hash"; import IpcEvents from "./IpcEvents"; -import Logger from "./logger"; +import Logger from "./Logger"; import { IpcRes } from "./types"; export const UpdateLogger = new Logger("Updater", "white"); |