-
-
Save jnv/7fbcd91e1ec0b525c56312e18ac9f4b5 to your computer and use it in GitHub Desktop.
Handlebars logging - tips for debugging templates!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Use this to turn on logging: (in your local extensions file) | |
*/ | |
Handlebars.logger.log = function(level) { | |
if(level >= Handlebars.logger.level) { | |
console.log.apply(console, [].concat(["Handlebars: "], _.toArray(arguments))); | |
} | |
}; | |
// DEBUG: 0, INFO: 1, WARN: 2, ERROR: 3, | |
Handlebars.registerHelper('log', Handlebars.logger.log); | |
// Std level is 3, when set to 0, handlebars will log all compilation results | |
Handlebars.logger.level = 3; | |
/* | |
* Log can also be used in templates: '{{log 0 this "myString" accountName}}' | |
* Logs all the passed data when logger.level = 0 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment