* This function will be called for every enabled log message. * * It can be sync or async: * - If it is synchronous it will block the driver from proceeding until this method returns. * - If it is asynchronous the driver will not await the returned promise. It will attach fulfillment han
(log: Log)
| 331 | * |
| 332 | */ |
| 333 | write(log: Log): PromiseLike<unknown> | unknown; |
| 334 | } |
| 335 | |
| 336 | function compareSeverity(s0: SeverityLevel, s1: SeverityLevel): 1 | 0 | -1 { |
no outgoing calls