| 40 | |
| 41 | /** Class used for logging to the console and to a ng-dev log file. */ |
| 42 | export abstract class Log { |
| 43 | /** Write to the console for at INFO logging level */ |
| 44 | static info = buildLogLevelFunction(() => console.info, LogLevel.INFO, null); |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected