enum

PointClickEngine::Core::DebugLevel

Inherits Enum < Comparable < Value < Object

Debug level configuration for controlling debug output

Constants

OFF = 0

No debug output - production mode

BASIC = 1

Basic debug information - errors and warnings only

VERBOSE = 2

Verbose debug information - detailed logging

VISUAL = 3

Visual debugging - renders debug overlays

Instance methods

basic?

Returns true if this enum value equals BASIC

Source
off?

Returns true if this enum value equals OFF

Source
should_log?(message_level : DebugLevel) : Bool

Check if debug output should be shown

Source
show_visual?

Check if visual debugging should be enabled

Source
to_s(io)
Source
verbose?

Returns true if this enum value equals VERBOSE

Source
visual?

Returns true if this enum value equals VISUAL

Source