-
-
Notifications
You must be signed in to change notification settings - Fork 174
⚡️ Use fine-grained logger instead of stdout.writeln
#694
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
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #694 +/- ##
==========================================
- Coverage 96.62% 96.61% -0.01%
==========================================
Files 22 23 +1
Lines 858 856 -2
==========================================
- Hits 829 827 -2
Misses 29 29 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Thanks! I was able to try it by adding path deps from your then running here is the output I still see two problems:
Fortunately, there is a way to do it :) like this, in now prints are logged as info. You could also write more code here if you want to separate some messages into info and some into warnings/errors. With the if you don't pass After I make the fix to and with which I think looks good, what do you think please? :) Thanks. |
|
@davidmorgan I've switched to the |
print instead of stdout.writelnstdout.writeln
|
Thanks! That's a good direction, one more suggestion, here: I suggest moving the This is because Also I notice that for Thanks :) |
|
Looks good to me--thanks :) |
Thanks for keeping an eye on this! |
## 5.11.0 **Feature** - [#576](#576) Add support for deferred components. by [@ianmaciel](https://github.com/ianmaciel) - [#676](#676) Add new option `parse_animation` to parse metadata for animated images. by [@huandu](https://github.com/huandu) - [#680](#680) Add svg `ColorMapper` to svg loader. by [@AlexV525](https://github.com/AlexV525) - [#685](#685) Use `.vec` SVG class for `vector_graphics_compiler` transformed assets. by [@Albert221](https://github.com/Albert221) - [#697](#697) Refactor how generated files are being formatted. by [@AlexV525](https://github.com/AlexV525) **Development** - [#681](#682) Bump `dart_style` v3 which also requires Dart 3.4. by [@AlexV525](https://github.com/AlexV525) - [#682](#682) Add Facts generate utils. by [@AlexV525](https://github.com/AlexV525) - [#694](#694) Use fine-grained logger instead of `stdout.writeln`. by [@AlexV525](https://github.com/AlexV525) - [#698](#698) Improve workflow with automatic formatting. by [@AlexV525](https://github.com/AlexV525) - [#699](#699) Allow `build 3.0.0`. by [@davidmorgan](https://github.com/davidmorgan)
What does this change?
Fixes #693
This PR also deletes the deprecation header. And added test configurations to let tests run with
concurrency=1.Type of change