Class: SemanticLogger::Base
- Inherits:
-
Object
- Object
- SemanticLogger::Base
- Defined in:
- lib/semantic_logger/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#filter ⇒ Object
Class name to be logged.
-
#name ⇒ Object
Class name to be logged.
Instance Method Summary collapse
-
#backtrace(thread: Thread.current, level: :warn, message: 'Backtrace:', payload: nil, metric: nil, metric_amount: nil) ⇒ Object
Log a thread backtrace.
-
#fast_tag(tag, &block) ⇒ Object
Deprecated.
-
#level ⇒ Object
Returns the current log level if set, otherwise it returns the global default log level.
-
#level=(level) ⇒ Object
Set the logging level for this logger.
-
#log(log_) ⇒ Object
Write log data to underlying data storage.
-
#measure(level, message, params = {}, &block) ⇒ Object
(also: #benchmark)
Dynamically supply the log level with every measurement call.
-
#payload ⇒ Object
:nodoc:.
-
#pop_tags(quantity = 1) ⇒ Object
:nodoc:.
-
#push_tags(*tags) ⇒ Object
Returns the list of tags pushed after flattening them out and removing blanks.
-
#should_log?(log) ⇒ Boolean
Whether this log entry meets the criteria to be logged by this appender.
-
#silence(new_level = :error, &block) ⇒ Object
:nodoc:.
-
#tagged(*tags, &block) ⇒ Object
(also: #with_tags)
Add the tags or named tags to the list of tags to log for this thread whilst the supplied block is active.
-
#tags ⇒ Object
:nodoc:.
-
#with_payload(payload, &block) ⇒ Object
:nodoc:.
Instance Attribute Details
#filter ⇒ Object
Class name to be logged
10 11 12 |
# File 'lib/semantic_logger/base.rb', line 10 def filter @filter end |
#name ⇒ Object
Class name to be logged
10 11 12 |
# File 'lib/semantic_logger/base.rb', line 10 def name @name end |
Instance Method Details
#backtrace(thread: Thread.current, level: :warn, message: 'Backtrace:', payload: nil, metric: nil, metric_amount: nil) ⇒ Object
Log a thread backtrace
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/semantic_logger/base.rb', line 127 def backtrace(thread: Thread.current, level: :warn, message: 'Backtrace:', payload: nil, metric: nil, metric_amount: nil) log = Log.new(name, level) return false unless meets_log_level?(log) backtrace = if thread == Thread.current Log.cleanse_backtrace else log.thread_name = thread.name log. = (thread[:semantic_logger_tags] || []).clone log. = (thread[:semantic_logger_named_tags] || {}).clone thread.backtrace end # TODO: Keep backtrace instead of transforming into a text message at this point # Maybe log_backtrace: true if backtrace += "\n" << backtrace.join("\n") end if log.assign(message: , backtrace: backtrace, payload: payload, metric: metric, metric_amount: metric_amount) && !filtered?(log) self.log(log) else false end end |
#fast_tag(tag, &block) ⇒ Object
Deprecated. Use SemanticLogger.tagged
229 230 231 |
# File 'lib/semantic_logger/base.rb', line 229 def fast_tag(tag, &block) SemanticLogger.fast_tag(tag, &block) end |
#level ⇒ Object
Returns the current log level if set, otherwise it returns the global default log level
33 34 35 |
# File 'lib/semantic_logger/base.rb', line 33 def level @level || SemanticLogger.default_level end |
#level=(level) ⇒ Object
Set the logging level for this logger
Note: This level is only for this particular instance. It does not override
the log level in any logging instance or the default log level
SemanticLogger.default_level
Must be one of the values in SemanticLogger::LEVELS, or nil if this logger instance should use the global default level
20 21 22 23 24 25 26 27 28 29 |
# File 'lib/semantic_logger/base.rb', line 20 def level=(level) if level.nil? # Use the global default level for this logger @level_index = nil @level = nil else @level_index = SemanticLogger.level_to_index(level) @level = SemanticLogger.send(:index_to_level, @level_index) end end |
#log(log_) ⇒ Object
Write log data to underlying data storage
246 247 248 |
# File 'lib/semantic_logger/base.rb', line 246 def log(log_) raise NotImplementedError.new('Logging Appender must implement #log(log)') end |
#measure(level, message, params = {}, &block) ⇒ Object Also known as: benchmark
Dynamically supply the log level with every measurement call
114 115 116 117 118 119 120 121 |
# File 'lib/semantic_logger/base.rb', line 114 def measure(level, , params = {}, &block) index = SemanticLogger.level_to_index(level) if level_index <= index measure_internal(level, index, , params, &block) else block.call(params) if block end end |
#payload ⇒ Object
:nodoc:
240 241 242 243 |
# File 'lib/semantic_logger/base.rb', line 240 def payload warn '#payload is deprecated, use SemanticLogger.named_tags' SemanticLogger. end |
#pop_tags(quantity = 1) ⇒ Object
:nodoc:
219 220 221 |
# File 'lib/semantic_logger/base.rb', line 219 def (quantity = 1) SemanticLogger.(quantity) end |
#push_tags(*tags) ⇒ Object
Returns the list of tags pushed after flattening them out and removing blanks
Note:
-
This method is slow since it needs to flatten the tags and remove empty elements to support Rails 4.
-
For better performance with clean tags, use
SemanticLogger.push_tags
212 213 214 215 216 |
# File 'lib/semantic_logger/base.rb', line 212 def (*) # Need to flatten and reject empties to support calls from Rails 4 = .flatten.collect(&:to_s).reject(&:empty?) SemanticLogger.(*) end |
#should_log?(log) ⇒ Boolean
Whether this log entry meets the criteria to be logged by this appender.
251 252 253 |
# File 'lib/semantic_logger/base.rb', line 251 def should_log?(log) meets_log_level?(log) && !filtered?(log) end |
#silence(new_level = :error, &block) ⇒ Object
:nodoc:
224 225 226 |
# File 'lib/semantic_logger/base.rb', line 224 def silence(new_level = :error, &block) SemanticLogger.silence(new_level, &block) end |
#tagged(*tags, &block) ⇒ Object Also known as:
Add the tags or named tags to the list of tags to log for this thread whilst the supplied block is active.
Returns result of block.
Tagged example:
SemanticLogger.tagged(12345, 'jack') do
logger.debug('Hello World')
end
Named Tags (Hash) example:
SemanticLogger.tagged(tracking_number: 12345) do
logger.debug('Hello World')
end
Notes:
-
Named tags are the recommended approach since the tag consists of a name value pair this is more useful than just a string value in the logs, or centralized logging system.
-
This method is slow when using multiple text tags since it needs to flatten the tags and remove empty elements to support Rails 4.
-
It is recommended to keep tags as a list without any empty values, or contain any child arrays. However, this api will convert:
`logger.tagged([['first', nil], nil, ['more'], 'other'])`to:
`logger.tagged('first', 'more', 'other')` -
For better performance with clean tags, see
SemanticLogger.tagged.
185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/semantic_logger/base.rb', line 185 def tagged(*, &block) # Allow named tags to be passed into the logger if .size == 1 tag = [0] return yield if tag.nil? || tag == '' return tag.is_a?(Hash) ? SemanticLogger.named_tagged(tag, &block) : SemanticLogger.fast_tag(tag.to_s, &block) end # Need to flatten and reject empties to support calls from Rails 4 = .flatten.collect(&:to_s).reject(&:empty?) SemanticLogger.tagged(*, &block) end |
#tags ⇒ Object
:nodoc:
202 203 204 |
# File 'lib/semantic_logger/base.rb', line 202 def SemanticLogger. end |
#with_payload(payload, &block) ⇒ Object
:nodoc:
234 235 236 237 |
# File 'lib/semantic_logger/base.rb', line 234 def with_payload(payload, &block) warn '#with_payload is deprecated, use SemanticLogger.named_tagged' SemanticLogger.named_tagged(payload, &block) end |