/** * @fileoverview Logging module exports for Datadog integration * Provides centralized access to Datadog logging functionality and configuration types * * @example * ```typescript * import { DatadogLogger, DatadogLoggerConfig } from './logging'; * * const config: DatadogLoggerConfig = { * apiKey: 'your-key', * service: 'my-app' * }; * DatadogLogger.initialize(config); * DatadogLogger.info('Application started'); * ``` */ export type { DatadogLoggerConfig } from '../../utils/index.js'; /** * Export the main Datadog logger client class * Provides methods for structured logging to Datadog with Winston backend */ export { DatadogLogger } from './datadogLogger.js';