module Loggability::LogClient::InstanceMethods

Stuff that gets added to instances of Classes that are log hosts.

Public Instance Methods

log() click to toggle source

Delegate to the class's logger.

# File lib/loggability/logclient.rb, line 40
def log
        @__log ||= Loggability[ self.class ].proxy_for( self )
end
log_host_key() click to toggle source

Fetch the key of the log host the instance of this client targets

# File lib/loggability/logclient.rb, line 34
def log_host_key
        return self.class.log_host_key
end