API with NestJS #166. Logging with the Drizzle ORM
Briefly

NestJS offers built-in logging functionalities that help track down issues in deployed applications, where traditional debugging is not an option.
To enhance log readability, it's recommended to create a logger instance in each class, thus including the service name in log messages.
Choosing appropriate log levels is crucial; higher levels signify greater severity, which helps prioritize which issues need immediate attention.
Logging SQL queries using Drizzle ORM can provide insights into database interactions and aid in identifying potential problems.
Read at Marcin Wanago Blog - JavaScript, both frontend and backend
[
]
[
|
]