From 41ecd8cfaa2afe40ce19e869de9686c9cc9c64d1 Mon Sep 17 00:00:00 2001 From: Lexelius Date: Tue, 10 Sep 2024 16:28:02 +0200 Subject: [PATCH] Update documentation [verbose_level] --- ptypy/core/ptycho.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/ptypy/core/ptycho.py b/ptypy/core/ptycho.py index 61dc1ccd6..8f392fd89 100644 --- a/ptypy/core/ptycho.py +++ b/ptypy/core/ptycho.py @@ -75,14 +75,16 @@ class Ptycho(Base): default = 'ERROR' help = Verbosity level doc = Verbosity level for information logging. - - ``CRITICAL``: Only critical errors - - ``ERROR``: All errors - - ``WARNING``: Warning - - ``INFO``: Process Information - - ``INSPECT``: Object Information - - ``DEBUG``: Debug + - ``CITATION``: Only citation message + - ``CRITICAL``: Only critical errors + - ``ERROR``: All errors + - ``WARNING``: Warning + - ``INTERACTIVE``: Interactive logging for jupyter notebooks + - ``INFO``: Process Information + - ``INSPECT``: Object Information + - ``DEBUG``: Debug type = str, int - choices = ['CRITICAL', 'ERROR', 'WARNING', 'INFO', 'INSPECT', 'DEBUG'] + choices = ['CITATION', 'CRITICAL', 'ERROR', 'WARNING', 'INTERACTIVE', 'INFO', 'INSPECT', 'DEBUG'] userlevel = 0 [data_type]