Sha256: 41e464f21a028c7735d24aa22dfded12ae6e1f77f96f93ae93c05207e783058c

Contents?: true

Size: 282 Bytes

Versions: 1

Compression:

Stored size: 282 Bytes

Contents

# encoding: utf-8
module Context

    # Implements some rudimentary logging for context.
    # This is basically just to output warnings.
    class Log
         def Log::warning(system, message)
             $stderr.print("WARNING #{system}: #{message}\n")
         end
    end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jldrill-0.6.0.1 lib/Context/Log.rb