I'm currently developing an Ext JS 6 application with some levels of inheritance on components, where some alias mappings get overridden. Ext JS debug is so friendly to let me know each time when I do this.
[W] Overriding existing mapping: 'controller.my-controller' From 'MyBase.app.Controller' to 'MySub.app.Controller'. Is this intentional?
In my case, it is intentional. The warnings are stacking up, and it is starting to get hard to see the forest for the trees.
- Can I turn these statements off somehow just for those classes that are intentional?
- Is renaming all my aliases a better solution?