summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/helpers/log.js
blob: ab83604b26c6bd9468d0a7b0ce3449c91189c8e2 (plain)
1
2
3
4
5
6
export default function(instance) {
  instance.registerHelper('log', function(message, options) {
    let level = options.data && options.data.level != null ? parseInt(options.data.level, 10) : 1;
    instance.log(level, message);
  });
}