Skip to content

Commit

Permalink
doc: Clarify verbosity when using pip (#513)
Browse files Browse the repository at this point in the history
This clarifies that you have to also use `-v` to get the logging
information set in the options. I am not sure if you also need the
additional `-vv` settings depending on `logging.level`. Thoughts?

Signed-off-by: Cristian Le <[email protected]>
  • Loading branch information
LecrisUT authored Sep 27, 2023
1 parent 47194df commit ea68dff
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ logging.level = "INFO"
````{tab} pip
```console
$ pip install . --config-settings=cmake.verbose=true --config-settings=logging.level=INFO
$ pip install . -v --config-settings=cmake.verbose=true --config-settings=logging.level=INFO
```
````
Expand Down Expand Up @@ -64,6 +64,13 @@ SKBUILD_LOGGING_LEVEL: "INFO"
````

:::{note}

When using `pip`, make sure you include at least a `-v` argument so that the
verbosity settings above are displayed.

:::

:::{warning}

In general, the environment variable method is intended as an emergency
Expand Down

0 comments on commit ea68dff

Please sign in to comment.