We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb93e7f commit bd431a0Copy full SHA for bd431a0
1 file changed
extension.js
@@ -1,6 +1,7 @@
1
var pjson = require('./package.json'),
2
Extension = require('openframe-extension'),
3
- execSync = require('child_process').execSync;
+ execSync = require('child_process').execSync,
4
+ debug = require('debug')('openframe-website');
5
6
/**
7
* Extensions should expose an instance of the Extension class.
@@ -35,7 +36,7 @@ module.exports = new Extension({
35
36
* @return {string} The string with tokens replaced.
37
*/
38
function _replaceTokens(filePath, tokens) {
- console.log(_replaceTokens, filePath, tokens);
39
+ debug(_replaceTokens, filePath, tokens);
40
41
function replace(token, value) {
42
// tokens start with a $ which needs to be escaped, oops
0 commit comments