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
Is your feature request related to a problem? Please describe.
Yes, there's a problem if say you want to run some Dart CLI program, whose goal is to write something to the stdout, a result that might be used by something else later. The problem is that FVM is doing at least some logging and thus "polluting" the stdout in this scenario. This line for example: FvmLogger.info('fvm: running Dart from Flutter "$version"\n');
Describe the solution you'd like
A way to silence any logging from FVM, an option such as -s / --silent or similar.
Describe alternatives you've considered
Calling dart directly, with downside being that one needs to hardcode the path and not use "fvm dart ...".
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Yes, there's a problem if say you want to run some Dart CLI program, whose goal is to write something to the stdout, a result that might be used by something else later. The problem is that FVM is doing at least some logging and thus "polluting" the stdout in this scenario. This line for example:
FvmLogger.info('fvm: running Dart from Flutter "$version"\n');
Describe the solution you'd like
A way to silence any logging from FVM, an option such as -s / --silent or similar.
Describe alternatives you've considered
Calling dart directly, with downside being that one needs to hardcode the path and not use "fvm dart ...".
The text was updated successfully, but these errors were encountered: