module Camunda
Top level module for camunda-workflow.
Attributes
logger[W]
Allows setting the logger to a custom logger
Public Class Methods
logger()
click to toggle source
Default is output to the standard output stream. @return [Object] instance which is used for logging
# File lib/camunda.rb, line 16 def logger @logger ||= Logger.new($stdout).tap do |log| log.progname = name end end