|
1 | 1 | /** |
2 | | - * ============================================================================ |
3 | | - * COMPREHENSIVE LOGGER - Structured Logging System |
4 | | - * ============================================================================ |
5 | | - * |
6 | | - * Provides detailed structured logging for all components with multiple |
7 | | - * severity levels, performance metrics, error tracking, and flexible output |
8 | | - * formats. Supports log rotation, retention policies, and filtering. |
9 | | - * |
10 | | - * FEATURES: |
11 | | - * - Structured logging with multiple severity levels |
12 | | - * - Performance metrics logging |
13 | | - * - Error tracking with stack traces and context |
14 | | - * - Multiple log formats (JSON, text, structured) |
15 | | - * - Log rotation and retention policies |
16 | | - * - Filtering by component, level, and time |
17 | | - * - Async logging for performance |
18 | | - * - Log aggregation and analysis |
19 | | - * |
20 | | - * USAGE: |
21 | | - * const logger = new ComprehensiveLogger({ level: 'INFO' }); |
22 | | - * logger.info('Analysis completed', { duration: 1234, action: 'click' }); |
23 | | - * |
24 | | - * ============================================================================ |
| 2 | + * Koda - Intelligent Browser Automation Library |
| 3 | + * This project uses Koda by Trent Pierce |
| 4 | + * https://github.com/TrentPierce/Koda |
| 5 | + * Licensed under the Koda Non-Commercial License |
| 6 | + * |
| 7 | + * Copyright (c) 2026 Trent Pierce. All rights reserved. |
| 8 | + * See LICENSE file for full terms. |
25 | 9 | */ |
26 | 10 |
|
27 | 11 | const EventEmitter = require('events'); |
|
0 commit comments