@athenna/logger
Version:
The Athenna logging solution. Log in stdout, files and buckets.
27 lines (26 loc) • 883 B
JavaScript
/**
* @athenna/logger
*
* (c) João Lenon <lenon@athenna.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { HttpClient } from '@athenna/common';
import { Driver } from '#src/drivers/Driver';
import { debug } from '#src/debug';
export class DiscordDriver extends Driver {
async transport(level, message) {
if (!this.couldBeTransported(level)) {
return;
}
const formatted = this.format(level, message, true);
debug('[%s] Transporting logs with username %s and in url %s.', DiscordDriver.name, this.configs.username, this.configs.url);
return HttpClient.builder(true).post(this.configs.url, {
body: {
username: this.configs.username,
content: formatted
}
});
}
}