removed log_level from docs

This commit is contained in:
Alejandro Saucedo 2021-01-27 22:14:15 +00:00
parent 527fa47b61
commit b79d531163
2 changed files with 49 additions and 8 deletions

View file

@ -311,13 +311,7 @@ Similar to the logistic regression implementation in the C++ examples section, b
Log Level Configuration
^^^^^^
You can configure log level with the function `kp.log_level` as outlined below.
Logging inside the C++ uses the PyBind logging, which allows for all the std::cout to be passed to a python logger.
The values are TRACE=0, DEBUG=1, INFO=2, WARN=3, ERROR=4. Kompute defaults to INFO.
.. code-block:: python
:linenos:
import kp
kp.log_level(1)
All python output is logged to the logger with the name `kp`.