| 22 | } from './types.js'; |
| 23 | |
| 24 | export interface ProcessLog { |
| 25 | readonly instanceId: string; |
| 26 | readonly processId: string; |
| 27 | readonly level: LogLevel; |
| 28 | readonly message: string; |
| 29 | readonly stream: 'stdout' | 'stderr'; |
| 30 | readonly source?: string; |
| 31 | readonly metadata?: Record<string, unknown>; |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Unified storage manager with shared database connections and optimized operations |
nothing calls this directly
no outgoing calls
no test coverage detected