Skip to content

feat(logger): Request Logging Implementation using Pino Logger #1967

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions env-example-document
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ GOOGLE_CLIENT_SECRET=
APPLE_APP_AUDIENCE=[]

WORKER_HOST=redis://redis:6379/1

# Logger Configuration
LOG_LEVEL=info
LOG_PRETTY=true
4 changes: 4 additions & 0 deletions env-example-relational
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@ GOOGLE_CLIENT_SECRET=
APPLE_APP_AUDIENCE=[]

WORKER_HOST=redis://redis:6379/1

# Logger Configuration
LOG_LEVEL=info
LOG_PRETTY=true
13 changes: 10 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
import globals from 'globals';
import tsParser from '@typescript-eslint/parser';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import js from '@eslint/js';

import { FlatCompat } from '@eslint/eslintrc';
import js from '@eslint/js';
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
import tsParser from '@typescript-eslint/parser';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand Down Expand Up @@ -60,6 +61,12 @@ export default [
message: '"it" should start with "should"',
},
],
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
},
];
Loading