await fetch()

in src/tools/WebhookLogger.ts [41:47]


      await fetch(this.url, {
        method: 'POST',
        body: `INFO${tag ? ` - ${tag.toUpperCase()}` : ''}: ${message}`,
        headers: {
          'Content-Type': 'text/plain',
        },
      });