-
Notifications
You must be signed in to change notification settings - Fork 570
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
add start_console_logging(bool) which accepts a flag. #2102
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for letting this sit for so long.
Please rebase on master
so we can do a fresh CI run and then I'll do a full review.
- Tabs: allow getting and setting the tab index of a Tabs widget ([#2082] by [@rjwittams] | ||
- Scope: expose scoped state using state() and state_mut() ([#2082] by [@rjwittams]) | ||
- Tabs: allow getting and setting the tab index of a Tabs widget ([#2082] by [@rjwittams]) | ||
- App: add start_console_logging(bool) which accepts a flag. ([#2102] by [@ratmice]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately the links aren't automatically generated. Please manually define both [#2102]
and [@ratmice]
at the bottom of the file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebased and defined the links, sorry I had missed your comment until now.
a09f8b9
to
41f168e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, this is simple enough. Let's get it in just in the nick of time.
Simple patch;
Noticed that when feature gating another logger, it seemed like it would be easier if
log_to_console
took a bool.Because it occurs in a builder call chain, there doesn't really seem to be a convenient place for
cfg
based conditional compilation.Not really important though