提交 974d1084 编写于 作者: M Matt Bierner

Make logging methods private

上级 e7672347
......@@ -312,15 +312,11 @@ export default class TypeScriptServiceClient implements ITypeScriptServiceClient
this.logger.info(message, data);
}
public warn(message: string, data?: any): void {
this.logger.warn(message, data);
}
private error(message: string, data?: any): void {
this.logger.error(message, data);
}
public logTelemetry(eventName: string, properties?: { [prop: string]: string }) {
private logTelemetry(eventName: string, properties?: { [prop: string]: string }) {
this.telemetryReporter.logTelemetry(eventName, properties);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册