-
Notifications
You must be signed in to change notification settings - Fork 432
Open
Labels
Description
Hi,
Firstly, thanks for making this! I really appreciate this utility.
When I run grip doc/api-spec.md
, it functions as expected:
$ grip doc/api-spec.md
* Serving Flask app "grip.app" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.
* Debug mode: off
* Running on http://localhost:6419/ (Press CTRL+C to quit)
However, when I give it the --quiet
flag, it prints all of the above minus one line:
$ grip doc/api-spec.md --quiet
* Serving Flask app "grip.app" (lazy loading)
* Environment: production
WARNING: Do not use the development server in a production environment.
Use a production WSGI server instead.
* Debug mode: off
I'm happy to submit a PR to fix this if this isn't intended behavior (if it is, then that's totally fine, just wanted to know!)
Per48edjes