Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Temporarily remove a bogus warning until fixed by dwds update #109793

New issue

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

Merged
merged 2 commits into from
Aug 19, 2022

Conversation

annagrin
Copy link
Contributor

@annagrin annagrin commented Aug 18, 2022

Closes: #109792

Pre-launch Checklist

  • I read the Contributor Guide and followed the process outlined there for submitting PRs.
  • I read the Tree Hygiene wiki page, which explains my responsibilities.
  • I read and followed the Flutter Style Guide, including Features we expect every widget to implement.
  • I signed the CLA.
  • I listed at least one issue that this PR fixes in the description above.
  • I updated/added relevant documentation (doc comments with ///).
  • I added new tests to check the change I am making, or this PR is test-exempt.
  • All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel on Discord.

@flutter-dashboard flutter-dashboard bot added the tool Affects the "flutter" command-line tool. See also t: labels. label Aug 18, 2022
@@ -1042,7 +1042,9 @@ void log(logging.LogRecord event) {
if (event.level >= logging.Level.SEVERE) {
globals.printError('${event.loggerName}: ${event.message}$error', stackTrace: event.stackTrace);
} else if (event.level == logging.Level.WARNING) {
globals.printWarning('${event.loggerName}: ${event.message}$error');
if (!event.message.contains('No module for')) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the need for this check is temporary, please add a TODO with issue/PR after which this can be removed.

Copy link
Contributor Author

@annagrin annagrin Aug 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done! This is already fixed in dwds master, so I added a link to the "release new version of dwds" issue.

@annagrin annagrin requested a review from zanderso August 18, 2022 22:28
@annagrin annagrin merged commit 3b6e3a6 into flutter:master Aug 19, 2022
christopherfujino pushed a commit to chris-forks/flutter that referenced this pull request Oct 4, 2022
…r#109793)

* Temporarily remove a bogus warning until fixed by dwds update

* Addressed CR feedback
christopherfujino added a commit that referenced this pull request Oct 5, 2022
… (#112887)

* Temporarily remove a bogus warning until fixed by dwds update

* Addressed CR feedback

Co-authored-by: Anna Gringauze <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tool Affects the "flutter" command-line tool. See also t: labels.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Bogus error message when debugging on web
2 participants