Application::run() sets the SHELL_VERBOSITY environment variable globally. This causes subsequent tasks run in the same process to use this new value. This could lead to unexpected consequences (more log data than expected). This change captures the variable before running the command and resets it to this starting state after.
Application::run()
sets theSHELL_VERBOSITY
environment variable globally. This causes subsequent tasks run in the same process to use this new value. This could lead to unexpected consequences (more log data than expected). This change captures the variable before running the command and resets it to this starting state after.