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