Skip to content

Commit

Permalink
Updating the description for --debug_http flag (#1052)
Browse files Browse the repository at this point in the history
* Updating the description for --debug_http flag

* Adding full stop in the last

* Removing extra lines
  • Loading branch information
raj-prince authored Apr 10, 2023
1 parent a224b67 commit 64cb05d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
14 changes: 1 addition & 13 deletions docs/mounting.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,21 +182,9 @@ 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|
|--help, -h|Show help|
|--version, -v|Print version|












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

0 comments on commit 64cb05d

Please sign in to comment.