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
run the following code on the demo website:
for (let i = 0; i < 10; i++) { console.log('meow') }
meow is printed 10 times
meow
meow is only printed 1-2 times
after a bit of debugging, chrome devtools frontend (for whatever reason) discards exactly same messages sent within the same timestamp:
https://github.com/ChromeDevTools/devtools-frontend/blob/9a2e154ade4201247b441e3279357159cdfd7c2a/front_end/core/sdk/ConsoleModel.ts#L300-L302
as a workaround im currently adding a counter in 0.001 steps to timestamp (patch) but that's probably not the best solution lol
The text was updated successfully, but these errors were encountered:
No branches or pull requests
repro:
run the following code on the demo website:
expected
meow
is printed 10 timesactual
meow
is only printed 1-2 timesadditional context
after a bit of debugging, chrome devtools frontend (for whatever reason) discards exactly same messages sent within the same timestamp:
https://github.com/ChromeDevTools/devtools-frontend/blob/9a2e154ade4201247b441e3279357159cdfd7c2a/front_end/core/sdk/ConsoleModel.ts#L300-L302
as a workaround im currently adding a counter in 0.001 steps to timestamp (patch) but that's probably not the best solution lol
The text was updated successfully, but these errors were encountered: