Logging
Kysely provides built-in query logging capabilities that can help you debug queries, monitor performance, and catch errors during development and production. This guide explains how to set up and customize logging in your Kysely instance.
Query logging in Kysely can be configured in two ways:
- Using predefined log levels
- Using a custom logging function
Both approaches are configured through the log
property when instantiating a new Kysely instance.
Using Predefined Log Levels
The simplest way to enable logging is to specify an array of log levels you want to capture:
Available log levels:
'query'
- Logs all executed queries (SQL statements without parameter values)'error'
- Logs all query execution errors
Using a Custom Logging Function
For more control over logging behavior, you can provide a custom logging function. This function receives a LogEvent
object containing detailed information about the query execution:
Example: Custom Logging Implementation
Advanced Logging Example
Here's a more sophisticated example that includes parameter masking for sensitive data and structured logging:
The CompiledQuery Interface
The query
property in the LogEvent
contains a CompiledQuery
object with the following structure:
Best Practices
-
Production Logging
- Consider disabling
'query'
level logging in production to avoid performance overhead - Always keep
'error'
level logging enabled for monitoring and debugging - Use structured logging formats for better searchability
- Consider disabling
-
Sensitive Data
- Always mask sensitive information in parameter values before logging
- Consider implementing a whitelist of safe-to-log columns/parameters
-
Performance Monitoring
- Use
queryDurationMillis
to monitor query performance - Consider implementing alerts for slow queries
- Use
Configuration Reference
For complete configuration options, refer to the KyselyConfig interface documentation.