metasploit-framework/lib/rex/constants.rb

21 lines
266 B
Ruby
Raw Normal View History

#
# Log severities
#
LOG_ERROR = 'error'
LOG_DEBUG = 'debug'
LOG_INFO = 'info'
LOG_WARN = 'warn'
LOG_RAW = 'raw'
#
# Log levels
#
# LEV_0 errors and warnings may be displayed to the user by default.
#
LEV_0 = 0
LEV_1 = 1
LEV_2 = 2
LEV_3 = 3