You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to implement a debug mode that could be enabled by default in development mode (via process.env or Meteor.isDevelopment ?) that adds logging messages when a variable is not defined in a template.
could raise console info messages on render when title is not defined in Template.instance().data or not defined in template helpers or when the helper return an undefined value
I think this feature could be helpful for developers, specially when refactoring code
Do you think it would be doable without too much effect on performance ? Maybe this could be done with custom code outside of blaze core ?
The text was updated successfully, but these errors were encountered:
It would be great to implement a debug mode that could be enabled by default in development mode (via
process.env
orMeteor.isDevelopment
?) that adds logging messages when a variable is not defined in a template.As an example the following code
could raise console info messages on render when
title
is not defined inTemplate.instance().data
or not defined in template helpers or when the helper return an undefined valueI think this feature could be helpful for developers, specially when refactoring code
Do you think it would be doable without too much effect on performance ? Maybe this could be done with custom code outside of blaze core ?
The text was updated successfully, but these errors were encountered: