diff options
author | Ven <vendicated@riseup.net> | 2022-10-30 20:45:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 20:45:18 +0100 |
commit | 8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59 (patch) | |
tree | 8397630ff18f8fa8952396334b3e4c003786cd07 /src/plugins/index.ts | |
parent | b905743077f5ffdd09c8ff3464ac19f770ae875f (diff) | |
download | Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.tar.gz Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.tar.bz2 Vencord-8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59.zip |
Webpack Warnings & Errors (#178)
* dev: Useful strict Warnings & Errors
* Always log error
* Ignore pending patches with all or whose predicate = false
* Error -> Warn
Diffstat (limited to 'src/plugins/index.ts')
-rw-r--r-- | src/plugins/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/index.ts b/src/plugins/index.ts index be6fae3..86d44b4 100644 --- a/src/plugins/index.ts +++ b/src/plugins/index.ts @@ -25,6 +25,7 @@ import { Patch, Plugin } from "../utils/types"; const logger = new Logger("PluginManager", "#a6d189"); +export const PMLogger = logger; export const plugins = Plugins; export const patches = [] as Patch[]; |