Sha256: e0be5efb2c8f3b6d57fbfe0f77a77b41de433347d1abae157eab397c1dd1d635
Contents?: true
Size: 452 Bytes
Versions: 4
Compression:
Stored size: 452 Bytes
Contents
module RTALogger # Logging severity. module LogSeverity # Low-level information, mostly for developers. DEBUG = 0 # Generic (useful) information about system operation. INFO = 1 # A warning. WARN = 2 # A handleable error condition. ERROR = 3 # An un-handleable error that results in a program crash. FATAL = 4 # An unknown message that should always be logged. UNKNOWN = 5 end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
RTALogger-0.1.4 | lib/log_severity.rb |
RTALogger-0.1.3 | lib/log_severity.rb |
RTALogger-0.1.2 | lib/log_severity.rb |
RTALogger-0.1.1 | lib/log_severity.rb |