Sha256: 449e5dfc0ae2057f0a614b1adffeede84d46d4986c07e95db7b51ce3f1882d0a
Contents?: true
Size: 416 Bytes
Versions: 5
Compression:
Stored size: 416 Bytes
Contents
# Copyright 2011, Preston Lee Ventures, LLC. All rights reserved. module Journeta # A silly logging implementation intended for internal use only. Nothing to see here! module Logger # A thread safe method for printing the given string if and only if debugging is enabled. def putsd(message = '(no message)') $stderr.print("DEBUG: #{message}\n") if $DEBUG end end end
Version data entries
5 entries across 5 versions & 1 rubygems