From 7eb8b86c31a59b41ad4e8e2f3e36b8bef3bb45c9 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Thu, 21 Jan 2021 11:33:08 +0000 Subject: [PATCH] Remove log statements --- packages/string-templates/src/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/string-templates/src/index.js b/packages/string-templates/src/index.js index 2ca00135b8..58ae887e20 100644 --- a/packages/string-templates/src/index.js +++ b/packages/string-templates/src/index.js @@ -81,8 +81,6 @@ module.exports.processStringSync = (string, context) => { if (typeof string !== "string") { throw "Cannot process non-string types." } - console.log(string) - console.log(context) let template string = preprocess(string) // this does not throw an error when template can't be fulfilled, have to try correct beforehand