Logging
Using the Logger
import { logger } from 'mindedjs';Log Levels
// Info level - general information
logger.info('Processing customer request');
// Warning level - potential issues
logger.warn('Customer tier not found, using default');
// Error level - errors and exceptions
logger.error('Failed to process payment');
// Debug level - detailed debugging information
logger.debug('Memory state updated');Structured Logging
Log Configuration
Best Practices
Last updated