| 14 | * @access package |
| 15 | */ |
| 16 | export interface LoggerConfig { |
| 17 | /** |
| 18 | * The context which the logger should log in. |
| 19 | * |
| 20 | * @default class="st">'sequelize' |
| 21 | */ |
| 22 | context?: string; |
| 23 | } |
| 24 | |
| 25 | export class Logger { |
| 26 | protected config: LoggerConfig; |
nothing calls this directly
no outgoing calls
no test coverage detected