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
This is a fun one, I've hit it before - Laravel's .env has LOG_LEVEL=debug set in it. Laravel therefore sets LOG_LEVEL as en environment variable (via the DotEnv package that comes with Laravel). That env var gets passed down to flyctl when run via Process::run() (since parent process env vars are passed to child processes when running a command).
Then flyctl outputs a bunch of stuff - since it uses LOG_LEVEL as well by coincidence.
So one idea is to unset the LOG_LEVEL env var when calling flyctl via Process::run().
Not sure if this is a flyctl issue or not
The text was updated successfully, but these errors were encountered: