Sha256: 88bb727fde5a6089177ec71ec1c7779b73d5190f333f8188a9825137701cb7fc
Contents?: true
Size: 338 Bytes
Versions: 28
Compression:
Stored size: 338 Bytes
Contents
module AchClient class Logging # Logs to stdout (using puts) class StdoutLogProvider < LogProvider # Prints the name and then the body # @param body [String] the log body # @param name [String] the log name def self.send_logs(body:, name:) puts name puts body end end end end
Version data entries
28 entries across 28 versions & 1 rubygems