module Syslog::Constants

LOG_MASK LOG_UPTO

Module holding Syslog constants. See Syslog.log and Syslog.open for constant descriptions.

Public Class Methods

LOG_MASK(priority_level) → priority_mask click to toggle source

Generates a mask bit for a priority level. See mask=

static VALUE mSyslogConstants_LOG_MASK(VALUE klass, VALUE pri)
{
    return INT2FIX(LOG_MASK(NUM2INT(pri)));
}
LOG_UPTO(priority_level) → priority_mask click to toggle source

Generates a mask value for priority levels at or below the level specified. See mask=

static VALUE mSyslogConstants_LOG_UPTO(VALUE klass, VALUE pri)
{
    return INT2FIX(LOG_UPTO(NUM2INT(pri)));
}