(extManifest: IExtensionManifest, message: string, func: LogFunc)
| 39 | * @returns Complete Log Entry |
| 40 | */ |
| 41 | export function newExtLog(extManifest: IExtensionManifest, message: string, func: LogFunc): ILogEntry { |
| 42 | return func('Extensions', `[${extManifest.displayName || extManifest.name}] ${message}`); |
| 43 | } |
| 44 | |
| 45 | export function internalNewExtLog(name: string, message: string, func: LogFunc): ILogEntry { |
| 46 | return func('Extensions', `[${name}] ${message}`); |
no outgoing calls
no test coverage detected