We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See previous discussion here: firebase/firebase-android-sdk#1690
For serve and emulators:start the UI is where we're going to improve logging. But for exec we should probably:
serve
emulators:start
exec
firebase-debug.log
cc @filipesilva @abeisgoat
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
I have the same need. Here's my workaround I use in scripts for those interested.
#!/usr/bin/env bash > out.log tail -f out.log & trap "kill $!" EXIT firebase emulators:exec --non-interactive 'some_command | tee out.log; exit ${PIPESTATUS[0]}' &>/dev/null
No branches or pull requests
See previous discussion here:
firebase/firebase-android-sdk#1690
For
serve
andemulators:start
the UI is where we're going to improve logging. But forexec
we should probably:firebase-debug.log
so that logs can be expected latercc @filipesilva @abeisgoat
The text was updated successfully, but these errors were encountered: