Package multi :: Module misc :: Class Verbosity
[hide private]
[frames] | no frames]

Class Verbosity

source code


A special singleton structure for changing the verbosity level on the fly.

Instance Methods [hide private]
int
level(self)
Return the current verbosity level.
source code
 
set(self, value=0)
Set the verbosity level.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]
a new object with type S, a subtype of T
__new__(self, *args, **kargs)
Replacement function for implementing the singleton design pattern.
source code
Class Variables [hide private]
  instance = None
  _value = 0
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__new__(self, *args, **kargs)
Static Method

source code 

Replacement function for implementing the singleton design pattern.

Returns: a new object with type S, a subtype of T
Overrides: object.__new__

level(self)

source code 

Return the current verbosity level.

Returns: int
The current verbosity level.

set(self, value=0)

source code 

Set the verbosity level.

Parameters:
  • value (int) - If given, then the verbosity level will be set. A value of 0 suppresses all output. A value of 1 causes the minimal amount of information to be printed. A value of 2 will switch on a number of debugging printouts. Values greater than 2 currently do nothing, though this might change in the future.