Skip to content
Open
Changes from all 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
17 changes: 0 additions & 17 deletions modules/howtos/pages/collecting-information-and-logging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,6 @@ The Python SDK allows logging via the standard `logging` module.
include::example$logging_example.py[tag=logging,indent=0]
----

=== Environmental Settings

IMPORTANT: Only one logger can be created. Either use `PYCBC_LOG_LEVEL` to create a console logger or `configure_logging` as mentioned above.

In the command line environment, the PYCBC_LOG_LEVEL variable is set as follows:

.GNU/Linux and Mac
[source,console]
----
export PYCBC_LOG_LEVEL=<log-level>
----

.Windows
[source,console]
----
set PYCBC_LOG_LEVEL=<log-level>
----

Where `<log-level>` is either `error`, `warn`, `info`, or `debug`.

Expand Down