123456789_123456789_123456789_123456789_123456789_

Module: Syslog::Level

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: lib/syslog/jruby.rb,
ext/syslog/syslog.c

Constant Summary

Instance Method Summary

Instance Method Details

#alert(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 41

def alert(*args)
  Syslog.log(LOG_ALERT, *args)
end

#crit(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 48

def crit(*args)
  Syslog.log(LOG_CRIT, *args)
end

#debug(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 83

def debug(*args)
  syslog_write(LOG_DEBUG, *args)
end

#emerg(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 34

def emerg(*args)
  Syslog.log(LOG_EMERG, *args)
end

#err(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 55

def err(*args)
  Syslog.log(LOG_ERR, *args)
end

#info(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 76

def info(*args)
  Syslog.log(LOG_INFO, *args)
end

#notice(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 69

def notice(*args)
  Syslog.log(LOG_NOTICE, *args)
end

#warning(*args)

[ GitHub ]

  
# File 'lib/syslog/jruby.rb', line 62

def warning(*args)
  Syslog.log(LOG_WARNING, *args)
end