class Puma::PidEvents

Public Instance Methods

error(str) click to toggle source
Calls superclass method Puma::Events#error
# File vendor/gems/puma-2.8.2-java/lib/puma/events.rb, line 126
def error(str)
  super "[#{$$}] #{str}"
end
log(str) click to toggle source
Calls superclass method Puma::Events#log
# File vendor/gems/puma-2.8.2-java/lib/puma/events.rb, line 118
def log(str)
  super "[#{$$}] #{str}"
end
write(str) click to toggle source
Calls superclass method Puma::Events#write
# File vendor/gems/puma-2.8.2-java/lib/puma/events.rb, line 122
def write(str)
  super "[#{$$}] #{str}"
end