mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
add --verbose flag to docs
This commit is contained in:
parent
d113ebe147
commit
0dc8aa0a5c
2 changed files with 12 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ func BuildServerFlags(cmd *cobra.Command, srv *server.Command) {
|
|||
flags.StringVarP(&srv.Config.Bind, "bind", "b", srv.Config.Bind, "Default URI on which pilosa should listen.")
|
||||
flags.IntVarP(&srv.Config.MaxWritesPerRequest, "max-writes-per-request", "", srv.Config.MaxWritesPerRequest, "Number of write commands per request.")
|
||||
flags.StringVar(&srv.Config.LogPath, "log-path", srv.Config.LogPath, "Log path")
|
||||
flags.BoolVar(&srv.Config.Verbose, "verbose", srv.Config.Verbose, "Verbose logging")
|
||||
flags.BoolVar(&srv.Config.Verbose, "verbose", srv.Config.Verbose, "Enable verbose logging")
|
||||
|
||||
// TLS
|
||||
SetTLSConfig(flags, &srv.Config.TLS.CertificatePath, &srv.Config.TLS.CertificateKeyPath, &srv.Config.TLS.SkipVerify)
|
||||
|
|
|
|||
|
|
@ -81,6 +81,17 @@ The config file is in the [toml format](https://github.com/toml-lang/toml) and h
|
|||
log-path = "/path/to/logfile"
|
||||
```
|
||||
|
||||
#### Verbose
|
||||
|
||||
* Description: Enable verbose logging.
|
||||
* Flag: `--verbose`
|
||||
* Env: `PILOSA_VERBOSE`
|
||||
* Config:
|
||||
|
||||
```toml
|
||||
verbose = true
|
||||
```
|
||||
|
||||
#### Max Writes Per Request
|
||||
|
||||
* Description: Maximum number of mutating commands allowed per request. This includes SetBit, ClearBit, SetRowAttrs, SetColumnAttrs, and SetFieldValue.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue