Compare commits

...

2 Commits

Author SHA1 Message Date
c3f0050734 Send env in footer 2023-11-13 14:21:43 +02:00
083f53179d v2.4.4 2023-11-03 22:54:23 +02:00
3 changed files with 7 additions and 3 deletions

View File

@ -145,6 +145,7 @@
"no-buffer-constructor": "warn",
"no-caller": "warn",
"no-console": "warn",
"no-constant-binary-expression": "error",
"no-div-regex": "warn",
"no-dupe-else-if": "warn",
"no-duplicate-imports": "warn",

View File

@ -1,6 +1,6 @@
{
"name": "@navy.gif/logger",
"version": "2.4.3",
"version": "2.4.4",
"description": "Logging thing",
"author": "Navy.gif",
"license": "MIT",

View File

@ -229,14 +229,17 @@ class MasterLogger implements Logger
else
console.log(out); // eslint-disable-line no-console
}
if ((broadcast || this.#_broadcastLevel <= this.#_logLevelMapping[type]) && this.#webhook)
if ((broadcast || (this.#_broadcastLevel <= this.#_logLevelMapping[type])) && this.#webhook)
{
const description = (subheader.length ? `**${subheader}**\n` : '') + `\`\`\`${text}\`\`\``;
this.#webhook.send({
embeds: [{
title: `[__${type.toUpperCase()}__] ${this._shard(shard)}`,
description,
color: colour.int
color: colour.int,
footer: {
text: `ENV: ${process.env.NODE_ENV ?? 'production'}`
}
}]
});
}