class Class

Public Instance Methods

install_logging(forward: true, on_instance: false) click to toggle source
Calls superclass method
# File lib/snapsync.rb, line 81
def install_logging(forward: true, on_instance: false)
    super(forward: forward)
    if on_instance
        include Logging::Installer
        if forward
            install_logging_forwarder
        end
    end
end