-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
[REQUIRED] Environment info
firebase-tools: 8.16.2 (latest)
Platform: macOS
[REQUIRED] Test case
Literally anywhere, but sure you can use this: https://github.com/kentcdodds/elaborate
[REQUIRED] Steps to reproduce
- Run
firebase emulators:start
- Notice there's a ton of output, much of it is not useful
- Dig through the firebase-tools code and find this handy option
- Try to enable it with
firebase emulators:start --quiet
- Notice the
error: unknown option '--quiet'
output - Try adding the option here
- Run
firebase emulators:start --quiet
again - Notice that you no longer get the error, but
this.args.quiet
is stillundefined
infunctionsEmulator.js
so that doesn't work either. - Discover emulators-startts and try a few things but ultimately give up.
[REQUIRED] Expected behavior
I want to be able to silence most of the output when I start my firebase function.
[REQUIRED] Actual behavior
Instead, I get a bunch of output that hides output from my functions:
Can you find my own logs? After a bit of time looking for them, so can I:
> getting post with ID xbxfZqu5gXN5QyhcfmGk
I'd much rather not have to search through all that output, which is why I'd like to have this --quiet
option. Or perhaps a --loglevel
option or something. I just need a way to silence the firebase logs.
yuri-sergiichuk, HiDeoo, terbooter, zanona, ceolinwill and 39 more