From 3f60d9806b5d8f180b55117fd3189b9df2ee1d4f Mon Sep 17 00:00:00 2001 From: Alexander Fenster Date: Thu, 6 Feb 2020 12:08:37 -0800 Subject: [PATCH] fix: remove extra logging (#232) --- typescript/src/schema/comments.ts | 1 - typescript/src/schema/proto.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/typescript/src/schema/comments.ts b/typescript/src/schema/comments.ts index 32ee79e88..a8abbf81a 100644 --- a/typescript/src/schema/comments.ts +++ b/typescript/src/schema/comments.ts @@ -106,7 +106,6 @@ export class CommentsMap { ) { const messageType = fd.messageType[p[1]].name; const field = fd.messageType[p[1]].field![p[3]]; - // console.warn(field); if (field) { //Type Enum: TYPE_STRING, TYPE_BOOL, etc. let paramType = diff --git a/typescript/src/schema/proto.ts b/typescript/src/schema/proto.ts index 90195eaf9..90f9b237b 100644 --- a/typescript/src/schema/proto.ts +++ b/typescript/src/schema/proto.ts @@ -625,7 +625,6 @@ function augmentService( return 0; } ); - console.warn(augmentedService.pathTemplates); return augmentedService; }