aboutsummaryrefslogtreecommitdiff
path: root/src/utils/logger.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/logger.ts')
-rw-r--r--src/utils/logger.ts20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/utils/logger.ts b/src/utils/logger.ts
index 309f4db..24cd2c8 100644
--- a/src/utils/logger.ts
+++ b/src/utils/logger.ts
@@ -17,11 +17,23 @@
*/
export default class Logger {
+ /**
+ * Returns the console format args for a title with the specified background colour and black text
+ * @param color Background colour
+ * @param title Text
+ * @returns Array. Destructure this into {@link Logger}.errorCustomFmt or console.log
+ *
+ * @example logger.errorCustomFmt(...Logger.makeTitleElements("white", "Hello"), "World");
+ */
+ static makeTitle(color: string, title: string): [string, ...string[]] {
+ return ["%c %c %s ", "", `background: ${color}; color: black; font-weight: bold; border-radius: 5px;`, title];
+ }
+
constructor(public name: string, public color: string) { }
- private _log(level: "log" | "error" | "warn" | "info" | "debug", levelColor: string, args: any[]) {
+ private _log(level: "log" | "error" | "warn" | "info" | "debug", levelColor: string, args: any[], customFmt = "") {
console[level](
- `%c Vencord %c %c ${this.name} `,
+ `%c Vencord %c %c ${this.name} ${customFmt}`,
`background: ${levelColor}; color: black; font-weight: bold; border-radius: 5px;`,
"",
`background: ${this.color}; color: black; font-weight: bold; border-radius: 5px;`
@@ -41,6 +53,10 @@ export default class Logger {
this._log("error", "#e78284", args);
}
+ public errorCustomFmt(fmt: string, ...args: any[]) {
+ this._log("error", "#e78284", args, fmt);
+ }
+
public warn(...args: any[]) {
this._log("warn", "#e5c890", args);
}