Problem
Module lifecycle logs are pretty noisy. They are hard to filter, also. If you filter out console logs that have either w_module or LifecycleModule in them, you wipe out many exceptions, because most of our ecosystem extends from LifeCycleModules.
Solution options
- Keep error logging on, but hide normal lifecycle logs behind a url parameter,
w_module.verbose=true
Example
The amount of lifecycle logging before:

After Solution option 1 (notice the length of the scrollbar pill):

Inspired by #110