class Object

Public Instance Methods

debug_log(log) click to toggle source

Convenience method for debug logging. Takes a String as the log parameter. Prints the log in blue.

# File bin/pushit, line 33
def debug_log (log)
        puts log.blue if $DEBUG_MODE
end