We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently elemToString doesn't take into account elem.id, so eg. for the following element:
elem.id
<div id="tree"></div>
with click listener, in logs I have:
<- on [click] 'div'
instead of:
<- on [click] 'div#tree'
Are there any reasons against using also id there?
The text was updated successfully, but these errors were encountered:
Merge pull request #347 from jared-stilwell/logging-with-ids
d5f85cf
Added element id to logger; Addresses #342.
No branches or pull requests
#contribution enquiry
Currently elemToString doesn't take into account
elem.id
, so eg. for the following element:with click listener, in logs I have:
instead of:
Are there any reasons against using also id there?
The text was updated successfully, but these errors were encountered: