diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eae790d..4ade78e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,17 @@ on: - develop jobs: + qodana: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@main + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} + linux: runs-on: ubuntu-latest strategy: @@ -30,11 +41,6 @@ jobs: - name: Run tests run: npm run test:coverage - env: - SLACK_URL: ${{ secrets.SLACK_URL }} - DISCORD_URL: ${{ secrets.DISCORD_URL }} - TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} - TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} - name: Test code transpilation run: npm run build diff --git a/package-lock.json b/package-lock.json index 0cacb5f..29444bb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@athenna/logger", - "version": "3.1.3", + "version": "3.1.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@athenna/logger", - "version": "3.1.3", + "version": "3.1.4", "license": "MIT", "dependencies": { "telegraf": "^4.11.2" diff --git a/package.json b/package.json index 0e79765..426e4cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/logger", - "version": "3.1.3", + "version": "3.1.4", "description": "The Athenna logging solution. Log in stdout, files and buckets.", "license": "MIT", "author": "João Lenon ", diff --git a/src/Constants/VanillaChannels.ts b/src/Constants/VanillaChannels.ts index 05a6e7c..9202889 100644 --- a/src/Constants/VanillaChannels.ts +++ b/src/Constants/VanillaChannels.ts @@ -29,6 +29,11 @@ export const VANILLA_CHANNELS = { formatter: 'cli', driver: 'console', }, + request: { + level: 'trace', + formatter: 'request', + driver: 'console', + }, exception: { level: 'trace', formatter: 'none',