From 34e83db56ce30c012dabc4c746c8eb432cbd0f2e Mon Sep 17 00:00:00 2001 From: Sita Lakshmi Sangameswaran Date: Wed, 3 Nov 2021 21:36:15 +0530 Subject: [PATCH] docs(samples): removed test console logs (#662) Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/nodejs-dlp/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) --- dlp/inspectString.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlp/inspectString.js b/dlp/inspectString.js index 081cb57bfa..cfeda45c5c 100644 --- a/dlp/inspectString.js +++ b/dlp/inspectString.js @@ -78,9 +78,6 @@ function main( item: item, }; - console.log(request.inspectConfig.infoTypes); - console.log(Array.isArray(request.inspectConfig.infoTypes)); - // Run request const [response] = await dlp.inspectContent(request); const findings = response.result.findings;