json_tagged_logger 0.8.0 → 0.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21f6070b94acf4230c68254797e06759ee1d75ca7b857054f3c95d7a872c3d8c
4
- data.tar.gz: 2fd59fe5624bfcdf4aa7d8e104d138e70c804e237ae8eacbbcc950172b2d53c8
3
+ metadata.gz: 48dce1179bda6aa327eb29098149e0239814e8b9b9b3a3ecc41ce25191c9e20f
4
+ data.tar.gz: c791ccfcc0426c7f25c5831caed2d2d1b18a0df875c3e07344f2d533c7122e05
5
5
  SHA512:
6
- metadata.gz: 8e9529f75a8ca997b6f074cf370001e147c4853a3eaac0d7e1a55dd46f5a358e685d1b09d17e8fc62d9f12b8a0c4a11194cdf59e50dfbac88314ed8c1e492805
7
- data.tar.gz: 8cc532c45f74566380a38ca5a71dc1fdbb3874bcdb8bdf3890be770aced174391b736b3951e0f6087fc70be6ade9c86e91a836ae0f47257e054de2e45c1f0c71
6
+ metadata.gz: d18d26d9af57487a525265be64f87b67acb5f1cd63c708574a47012047e80c1efd9cd44f861204abcce150e75483de912eb1e42a0e3b026e016f8f4427e4e0fa
7
+ data.tar.gz: 7d82438c5036cdad595ead5af5605c63ecbb5ad61a0c946cbc36ced7f2cd9a68b5885c6c1dae5f75a8a3c658a8733b2eefb6ad33e03e9edb3687a8f0b15548ef
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # JsonTaggedLogger
2
2
 
3
3
  [![Build Status](https://github.com/santry/json_tagged_logger/actions/workflows/ci.yml/badge.svg)](https://github.com/santry/json_tagged_logger/actions/workflows/ci.yml)
4
+ [![Gem Version](https://badge.fury.io/rb/json_tagged_logger.svg)](https://badge.fury.io/rb/json_tagged_logger)
4
5
 
5
6
  `JsonTaggedLogger` works in conjunction with [`ActiveSupport::TaggedLogging`](https://api.rubyonrails.org/classes/ActiveSupport/TaggedLogging.html) and (optionally) [Lograge](https://github.com/roidrage/lograge) to produce JSON-formatted log output. By itself, `ActiveSupport::TaggedLogging` supports simple tagging. With `JsonTaggedLogger`, you can compose key/value pairs, simple tags, and the log message itself into a single JSON document for easy consumption and parsing in log aggregators.
6
7
 
@@ -1,5 +1,5 @@
1
+ require 'active_support'
1
2
  require 'active_support/core_ext/hash/keys'
2
- require 'active_support/tagged_logging'
3
3
  require 'json'
4
4
 
5
5
  module JsonTaggedLogger
@@ -1,5 +1,4 @@
1
1
  require 'active_support'
2
- require 'active_support/tagged_logging'
3
2
 
4
3
  module JsonTaggedLogger
5
4
  module Logger
@@ -1,3 +1,3 @@
1
1
  module JsonTaggedLogger
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_tagged_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Santry
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  requirements: []
118
- rubygems_version: 3.5.16
118
+ rubygems_version: 3.5.9
119
119
  signing_key:
120
120
  specification_version: 4
121
121
  summary: JSON Tagged Log Formatter