cideMOD.helpers.logging

Classes

LogLevel(value)

An enumeration.

VerbosityLevel(value)

This method define different verbosity levels to be taken into account when printing information.

class cideMOD.helpers.logging.LogLevel(value)[source]

Bases: IntFlag

An enumeration.

DEBUG = 0
ERROR = 2
WARNING = 1
class cideMOD.helpers.logging.VerbosityLevel(value)[source]

Bases: IntFlag

This method define different verbosity levels to be taken into account when printing information.

Levels

NO_INFO0

No information will be displayed.

BASIC_PROGRESS_INFO1

Show information about the progress of the simulation.

BASIC_PROBLEM_INFO2

Show information about the problem (e.g. dofs, cell, etc.)

DETAILED_PROGRESS_INFO3

Detailed information about the progress.

DETAILED_SOLVER_INFO4

Detailed information about the resolution progress.

BASIC_PROBLEM_INFO = 2
BASIC_PROGRESS_INFO = 1
DETAILED_PROGRESS_INFO = 3
DETAILED_SOLVER_INFO = 4
NO_INFO = 0