From 1f3c245fb7cf8dc83daea22cac3108308df9c294 Mon Sep 17 00:00:00 2001 From: Richard Smedley Date: Mon, 30 Oct 2023 12:14:59 +0000 Subject: [PATCH] No environmental settings? --- .../collecting-information-and-logging.adoc | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/modules/howtos/pages/collecting-information-and-logging.adoc b/modules/howtos/pages/collecting-information-and-logging.adoc index eb44dcd5..8dc348ef 100644 --- a/modules/howtos/pages/collecting-information-and-logging.adoc +++ b/modules/howtos/pages/collecting-information-and-logging.adoc @@ -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= ----- - -.Windows -[source,console] ----- -set PYCBC_LOG_LEVEL= ----- Where `` is either `error`, `warn`, `info`, or `debug`.