Skip to content
New issue

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

Updating the description for --debug_http flag #1052

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/mounting.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ Type ```gcsfuse --help``` to see the full list:
|--debug_fuse|Enable fuse-related debugging output.|
|--debug_fs|Enable file system debugging output.|
|--debug_gcs|Print GCS request and timing information.|
|--debug_http|Dump HTTP requests and responses to/from GCS.|
|--debug_http| Dump HTTP requests and responses to/from GCS, doesn't work when --enable-storage-client-library flag is true.|
|--debug_invariants|Panic when internal invariants are violated.|
|--debug_mutex|Print debug messages when a mutex is held too long.|
|--enable-storage-client-library|If true, will use go storage client library otherwise jacobsa/gcloud|
Expand All @@ -200,3 +200,4 @@ Type ```gcsfuse --help``` to see the full list:




raj-prince marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 3 additions & 2 deletions flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,9 @@ func newApp() (app *cli.App) {
},

cli.BoolFlag{
Name: "debug_http",
Usage: "Dump HTTP requests and responses to/from GCS.",
Name: "debug_http",
Usage: "Dump HTTP requests and responses to/from GCS, " +
"doesn't work when enable-storage-client-library flag is true.",
},

cli.BoolFlag{
Expand Down