(identifier: string, functionName: string, detail: object = {})
| 99 | } |
| 100 | |
| 101 | private logFormattedMessage(identifier: string, functionName: string, detail: object = {}) { |
| 102 | detail = Object.assign({ application: this }, detail) |
| 103 | |
| 104 | this.logger.groupCollapsed(`${identifier} #${functionName}`) |
| 105 | this.logger.log("details:", { ...detail }) |
| 106 | this.logger.groupEnd() |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | function domReady() { |
no test coverage detected