Information on the main site for debugging Polymer 0.5 is quite obsolete and doesn't work for Polymer 1.0.
I want to see some logs, so what I do:
<script>
window.Platform = {flags: {debug: true, log: 'bind,ready'}};
</script>
<script src="/node_modules/webcomponents.js/webcomponents.js" debug></script>
<link rel="import" href="...">
Inside the import:
<link rel="import" href="./bower_components/polymer/polymer.html">
<dom-module id="my-custom-element">...</dom-module>
Hit the url: http://localhost:8080/index.html?debug&log=bind,ready,events
.
And finally I can't see any logs on the console.
What is the right way of debugging Polymer 1.0?