Sha256: a0375ef761566af30fcccc47411c78802bc1fafec87c40125eb9327f327cb35d
Contents?: true
Size: 600 Bytes
Versions: 13
Compression:
Stored size: 600 Bytes
Contents
# frozen_string_literal: true module ServiceSkeleton module LoggingHelpers private def log_exception(ex, progname = nil) #:nocov: progname ||= "#{self.class.to_s}##{caller_locations(2, 1).first.label}" logger.error(progname) do explanation = if block_given? yield else nil end (["#{explanation}#{explanation ? ": " : ""}#{ex.message} (#{ex.class})"] + ex.backtrace).join("\n ") end #:nocov: end def logloc loc = caller_locations.first "#{self.class}##{loc.label}" end end end
Version data entries
13 entries across 13 versions & 1 rubygems