• Blog
  • Documentation
  • Courses
  • Changelog
  • AI Starters
  • UI Kit
  • FAQ
  • Supamode
    New
  • Pricing

Launch your next SaaS in record time with Makerkit, a React SaaS Boilerplate for Next.js and Supabase.

Makerkit is a product of Makerkit Pte Ltd (registered in the Republic of Singapore)Company Registration No: 202407149CFor support or inquiries, please contact us

About
  • FAQ
  • Contact
  • Verify your Discord
  • Consultation
  • Open Source
  • Become an Affiliate
Product
  • Documentation
  • Blog
  • Changelog
  • UI Blocks
  • Figma UI Kit
  • AI SaaS Starters
License
  • Activate License
  • Upgrade License
  • Invite Member
Legal
  • Terms of License
  • Global Configuration
    • Environment Variables
    • Feature Flags
  • Server Actions
    • Sending CSRF Token to Actions
    • Server Actions Error Handling
  • The Makerkit SDK
    • User SDK
    • Organization SDK
    • Organization Subscription SDK
    • Data Loader SDK
  • Architecture and Folder Structure
    • Structure your Application
    • Data Model
    • Commands
    • Code Style
    • Translations and Locales
    • Sending Emails
    • Validating API payload with Zod
    • Logging
    • Enable CORS
    • Encrypting Secrets
    • User Roles
This documentation is for a legacy version of Next.js and Supabase. For the latest version, please visit the Next.js and Supabase V2 documentation

Logging | Next.js Supabase SaaS Kit

Logging is a fundamental part for your SaaS to understand and monitor the behavior of your code at runtime. Let's learn how to add logging to your Makerkit application.

The Makerkit Boilerplate uses pino as logging library. Pino is simple and lightweight, and it's used across the API functions to log important information that helps you debug your code.

Generally speaking, you will find that we log every function, especially for asynchronous operations that could fail for a number of reasons: network issues, API exceptions, and so on.

So, how to log your API functions effectively? Our recommendation is to log before executing an operation and then log the result of the operation, without leaking important data.

Furthermore, we want to log information such as:

  • which user is performing the operation?
  • which organization is the user part of?
  • any other information that can help you understand and debug what is happening.

Let's assume you're writing an API function to write to your database:

tsx
function addIntegrationHandler() {
return writeToDb(data);
}

Let's rewrite the above by adding logging to your function:

tsx
import logger from '~/core/logger';
async function addIntegrationHandler(
userId: string,
organizationId: number,
integrationId: number,
) {
// this is the context that every log will print out
const loggingContext = {
integrationId,
organizationId,
userId,
};
// Here we log what we're doing
logger.log(loggingContext, `Adding new integration to organization`);
try {
await writeToDb(data);
// Here we log that the result of the operation
// was successful
logger.log(loggingContext, `Integration successfully added`);
// return successful response
return {
integrationId,
success: true
};
} catch (e) {
// Here we log that the operation failed
logger.error(loggingContext, `Encountered an error while adding integration`);
// Logging errors can be okay but
// ensure not to leak important information!
logger.debug(e);
throw e;
}
}

NB: If you're using Vercel, logs are not persisted by default! Check out the Vercel integrations for adding persisting logs to your projects.