lib/mixlib/log/child.rb in mixlib-log-3.0.1 vs lib/mixlib/log/child.rb in mixlib-log-3.0.8

- old
+ new

@@ -12,11 +12,11 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -require "mixlib/log/logging" +require_relative "logging" module Mixlib module Log class Child include Mixlib::Log::Logging @@ -34,17 +34,17 @@ # Define the methods to interrogate the logger for the current log level. # Note that we *only* query the default logger (@logger) and not any other # loggers that may have been added, even though it is possible to configure # two (or more) loggers at different log levels. - [:trace?, :debug?, :info?, :warn?, :error?, :fatal?].each do |method_name| + %i{trace? debug? info? warn? error? fatal?}.each do |method_name| define_method(method_name) do parent.send(method_name) end end def add(severity, message = nil, progname = nil, data: {}, &block) - data = metadata.merge(data) if data.kind_of?(Hash) + data = metadata.merge(data) if data.is_a?(Hash) parent.send(:pass, severity, message, progname, data: data, &block) end def with_child(metadata = {}) child = Child.new(self, metadata)