(...args: any[])
| 412 | console.warn.call(console, `<${pid}> ${new Date().format()}`.gray, '[WARN]'.yellow, ...args); |
| 413 | }, |
| 414 | error(...args: any[]) { |
| 415 | console.error.call(console, `<${pid}> ${new Date().format()}`.gray, '[ERROR]'.red, ...args); |
| 416 | }, |
| 417 | } |
| 418 | |
| 419 | export const defualtBaseServerOptions: BaseServerOptions = { |
nothing calls this directly
no outgoing calls
no test coverage detected