You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The logger is used in most places, but some times a Console would be more appropriate.
For instance, in the run-with cli module, messages like logger.info("Run with compose") or logger.info("Run with original BNA") could be replaced with with console.status("[bold green]Run with compose").
Or the configure module does not display any information, leaving the user without feedback.
We should make sure that the appropriate system is being use to provide the best user experience.
The text was updated successfully, but these errors were encountered:
Another thing would be to make the CLI command composable when possible. For example, the run and run-with sub-commands mostly simply call other sub-commands.
If we could create small reusable units, then we would be able to assemble them like Lego blocks.
Feature request
Current Behavior/ Expected Behavior
The logger is used in most places, but some times a Console would be more appropriate.
For instance, in the
run-with
cli module, messages likelogger.info("Run with compose")
orlogger.info("Run with original BNA")
could be replaced withwith console.status("[bold green]Run with compose")
.Or the
configure
module does not display any information, leaving the user without feedback.We should make sure that the appropriate system is being use to provide the best user experience.
The text was updated successfully, but these errors were encountered: