Sha256: 0ebbc2050155d3225843b2adb0c9889292483e22df0287a8579dfe022d790182
Contents?: true
Size: 610 Bytes
Versions: 11
Compression:
Stored size: 610 Bytes
Contents
module LeadZeppelin module APNS module Logger module_function def thread(string) LeadZeppelin.thread_logger.print string.upcase if LeadZeppelin.thread_logger end def debug(string) LeadZeppelin.logger.debug(string) if LeadZeppelin.logger end def info(string) LeadZeppelin.logger.info(string) if LeadZeppelin.logger end def warn(string) LeadZeppelin.logger.warn(string) if LeadZeppelin.logger end def error(string) LeadZeppelin.logger.error(string) if LeadZeppelin.logger end end end end
Version data entries
11 entries across 11 versions & 1 rubygems