Module ncache.client.enum.LogLevel

Expand source code
from enum import Enum


class LogLevel(Enum):
    """
    Defines the level of logging you want to use.
    """
    INFO = 1
    """
    Info level describes some useful information about any operation performed on cache.
    """
    ERROR = 2
    """
    This log flag gives the cause of errors that are raised during operation execution.
    """
    DEBUG = 3
    """
    This log option prints detailed information about any operations in cache.
    """

Classes

class LogLevel (value, names=None, *, module=None, qualname=None, type=None, start=1)

Defines the level of logging you want to use.

Expand source code
class LogLevel(Enum):
    """
    Defines the level of logging you want to use.
    """
    INFO = 1
    """
    Info level describes some useful information about any operation performed on cache.
    """
    ERROR = 2
    """
    This log flag gives the cause of errors that are raised during operation execution.
    """
    DEBUG = 3
    """
    This log option prints detailed information about any operations in cache.
    """

Ancestors

  • enum.Enum

Class variables

var DEBUG

This log option prints detailed information about any operations in cache.

var ERROR

This log flag gives the cause of errors that are raised during operation execution.

var INFO

Info level describes some useful information about any operation performed on cache.