json_tagged_logging 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.gitlab-ci.yml +18 -0
- data/.rspec +3 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +79 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/json_tagged_logging.gemspec +30 -0
- data/lib/json_tagged_logging.rb +55 -0
- data/lib/json_tagged_logging/formatter.rb +55 -0
- data/lib/json_tagged_logging/version.rb +3 -0
- metadata +89 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 02acce9f70b29082efbd37520fab4ffb0dd4811aecd019a48e848a26e9b065c8
|
4
|
+
data.tar.gz: a600831fcf014b197d33aa2bbd39c963c4193fae413ff8e3889bb9aebc9a1517
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 01720d02b362bec20640e998c7f2fff6028832654160003a0c3f9627a4f2d18815af7218cd3b6cc97a299db958f4c046666d43b2bd309dd42f13a82ceb8ecb12
|
7
|
+
data.tar.gz: f8a55aa6b114346c851399669e0133cc3304d8e639209862005bb3512552516112b580eef482b1044730c5c0cb171caa8f85a787e4cc75c4e32644f570e5c3e0
|
data/.gitignore
ADDED
data/.gitlab-ci.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
image: ruby:latest
|
2
|
+
|
3
|
+
stages:
|
4
|
+
- test
|
5
|
+
|
6
|
+
cache:
|
7
|
+
paths:
|
8
|
+
- vendor/ruby
|
9
|
+
|
10
|
+
before_script:
|
11
|
+
- ruby -v # Print out ruby version for debugging
|
12
|
+
- gem install bundler --no-document # Bundler is not installed with the image
|
13
|
+
- bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby
|
14
|
+
|
15
|
+
test:
|
16
|
+
stage: test
|
17
|
+
script:
|
18
|
+
- bundle exec rake
|
data/.rspec
ADDED
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
json_tagged_logging
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.5
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at t.skukx@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Taylor Scott
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
# JsonTaggedLogging
|
2
|
+
|
3
|
+
This gem is for the purpose of serializing your logs as JSON. This can be valuable if you're shipping logs
|
4
|
+
and need to easily search data.
|
5
|
+
|
6
|
+
This logger is very similar to [ActiveSupport::TaggedLogging](https://api.rubyonrails.org/classes/ActiveSupport/TaggedLogging.html). The
|
7
|
+
difference rather that tags being strings, your tags can be key/value pairs.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'json_tagged_logging'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle install
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install json_tagged_logging
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
**Decorate your logger**
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
logger = Logger.new(STDOUT)
|
31
|
+
logger = JsonTaggedLogging.new(logger)
|
32
|
+
|
33
|
+
logger.info 'This is a log'
|
34
|
+
#=> {"level":"INFO","timestamp":"2020-05-29T21:23:43.990Z","app":null,"message":"This is a log"}
|
35
|
+
```
|
36
|
+
|
37
|
+
**Tag your logs**
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
logger.tagged('request.id': 'abc123') do
|
41
|
+
logger.info 'Some action occurred'
|
42
|
+
end
|
43
|
+
#=> {"level":"INFO","timestamp":"2020-05-29T21:27:26.810Z","app":null,"message":"Some action occurred","request.id":"abc123"}
|
44
|
+
```
|
45
|
+
|
46
|
+
**Other usage**
|
47
|
+
|
48
|
+
```ruby
|
49
|
+
# Pass in a hash
|
50
|
+
logger.info data: { x: 1, y: 2 }
|
51
|
+
#=> {"level":"INFO","timestamp":"2020-05-29T21:29:02.324Z","app":null,"data":{"x":1,"y":2},"message":null}
|
52
|
+
|
53
|
+
# Pass in a hash and include a message
|
54
|
+
logger.info message: 'my message', data: { x: 1, y: 2 }
|
55
|
+
#=> {"level":"INFO","timestamp":"2020-05-29T21:30:13.106Z","app":null,"data":{"x":1,"y":2},"message":"my message"}
|
56
|
+
|
57
|
+
# Pass in an Exception
|
58
|
+
logger.error(StandardError.new('oops'))
|
59
|
+
#=> {"level":"ERROR","timestamp":"2020-05-29T21:32:15.488Z","app":null,"message":"oops","error":{"name":"StandardError","message":"oops","trace":null}}
|
60
|
+
```
|
61
|
+
|
62
|
+
## Development
|
63
|
+
|
64
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
65
|
+
|
66
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
67
|
+
|
68
|
+
## Contributing
|
69
|
+
|
70
|
+
Bug reports and pull requests are welcome on GitLab at https://gitlab.com/deseretbook/packages/json-tagged-logging. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://gitlab.com/deseretbook/packages/json-tagged-logging/-/blob/master/CODE_OF_CONDUCT.md).
|
71
|
+
|
72
|
+
|
73
|
+
## License
|
74
|
+
|
75
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
76
|
+
|
77
|
+
## Code of Conduct
|
78
|
+
|
79
|
+
Everyone interacting in the JsonTaggedLogging project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://gitlab.com/deseretbook/packages/json-tagged-logging/-/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "json_tagged_logging"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative 'lib/json_tagged_logging/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "json_tagged_logging"
|
5
|
+
spec.version = JsonTaggedLogging::VERSION
|
6
|
+
spec.authors = ["Taylor Scott"]
|
7
|
+
spec.email = ["t.skukx@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{Write your logs as JSON}
|
10
|
+
spec.description = %q{Write and tag your logs formatted as JSON}
|
11
|
+
spec.homepage = "https://gitlab.com/deseretbook/packages/json-tagged-logging"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
16
|
+
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
|
28
|
+
spec.add_dependency 'activesupport'
|
29
|
+
spec.add_dependency 'oj'
|
30
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'active_support/core_ext'
|
2
|
+
require 'active_support/json'
|
3
|
+
require 'active_support/tagged_logging'
|
4
|
+
require 'oj'
|
5
|
+
|
6
|
+
require 'json_tagged_logging/formatter'
|
7
|
+
require 'json_tagged_logging/version'
|
8
|
+
|
9
|
+
##
|
10
|
+
# Wraps any standard Logger object to provide tagging capabilities.
|
11
|
+
#
|
12
|
+
# This implementation is wideley taken from ActiveSupport::TaggedLogging with
|
13
|
+
# some modifications
|
14
|
+
#
|
15
|
+
# @see https://github.com/rails/rails/blob/master/activesupport/lib/active_support/tagged_logging.rb
|
16
|
+
#
|
17
|
+
# @example Creating Logs
|
18
|
+
# logger = JsonTaggedLogging.new(Logger.new(STDOUT))
|
19
|
+
#
|
20
|
+
# logger.tagged(channel: 'api') { logger.info 'Stuff' }
|
21
|
+
# #=> { "level": "INFO", "message": "Stuff", "channel": "api" }
|
22
|
+
#
|
23
|
+
# logger.tagged(channel: 'api', user: 1) { logger.info 'Stuff' }
|
24
|
+
# #=> { "level": "INFO", "message": "Stuff", "channel": "api", "user": 1 }
|
25
|
+
#
|
26
|
+
# logger.tagged(channel: 'api') { logger.tagged(user: 1) { logger.info 'Stuff' } }
|
27
|
+
# #=> { "level": "INFO", "message": "Stuff", "channel": "api", "user": 1 }
|
28
|
+
#
|
29
|
+
module JsonTaggedLogging
|
30
|
+
def self.new(logger)
|
31
|
+
logger = logger.dup
|
32
|
+
|
33
|
+
if logger.formatter
|
34
|
+
logger.formatter = logger.formatter.dup
|
35
|
+
else
|
36
|
+
# Ensure we set a default formatter so we aren't extending nil!
|
37
|
+
logger.formatter = ActiveSupport::Logger::SimpleFormatter.new
|
38
|
+
end
|
39
|
+
|
40
|
+
logger.formatter.extend JsonTaggedLogging::Formatter
|
41
|
+
logger.extend(self)
|
42
|
+
end
|
43
|
+
|
44
|
+
delegate :push_tags, :pop_tags, :clear_tags!, to: :formatter
|
45
|
+
|
46
|
+
def tagged(*tags)
|
47
|
+
formatter.tagged(*tags) { yield self }
|
48
|
+
end
|
49
|
+
|
50
|
+
def flush
|
51
|
+
clear_tags!
|
52
|
+
super if defined?(super)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
##
|
2
|
+
# Formats logs as JSON
|
3
|
+
#
|
4
|
+
module JsonTaggedLogging
|
5
|
+
module Formatter # :nodoc:
|
6
|
+
include ActiveSupport::TaggedLogging::Formatter
|
7
|
+
|
8
|
+
RESERVED_FIELDS = %i[level timestamp app message trace]
|
9
|
+
|
10
|
+
def call(severity, timestamp, progname, msg)
|
11
|
+
tags = tags_hash.except(*RESERVED_FIELDS)
|
12
|
+
|
13
|
+
log = {
|
14
|
+
level: severity,
|
15
|
+
timestamp: timestamp.utc,
|
16
|
+
app: progname
|
17
|
+
}
|
18
|
+
|
19
|
+
log.merge!(serialize_message(msg))
|
20
|
+
log.merge!(tags)
|
21
|
+
|
22
|
+
Oj.dump(log, mode: :compat) + "\n"
|
23
|
+
end
|
24
|
+
|
25
|
+
def tags_hash
|
26
|
+
tags = current_tags.inject do |memo, value|
|
27
|
+
value.is_a?(Hash) ? memo.merge(value) : memo
|
28
|
+
end
|
29
|
+
|
30
|
+
tags.is_a?(Hash) ? tags : {}
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def serialize_message(msg)
|
36
|
+
serialized = {}
|
37
|
+
|
38
|
+
if msg.is_a?(Hash)
|
39
|
+
serialized.merge! msg.except(*RESERVED_FIELDS)
|
40
|
+
serialized[:message] = msg[:message] || msg['message']
|
41
|
+
elsif msg.is_a?(Exception)
|
42
|
+
serialized[:message] = msg.message
|
43
|
+
serialized[:error] = {
|
44
|
+
name: msg.class.name,
|
45
|
+
message: msg.message,
|
46
|
+
trace: msg.backtrace
|
47
|
+
}
|
48
|
+
else
|
49
|
+
serialized[:message] = msg
|
50
|
+
end
|
51
|
+
|
52
|
+
serialized
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: json_tagged_logging
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Taylor Scott
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-05-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: oj
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Write and tag your logs formatted as JSON
|
42
|
+
email:
|
43
|
+
- t.skukx@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- ".gitlab-ci.yml"
|
50
|
+
- ".rspec"
|
51
|
+
- ".ruby-gemset"
|
52
|
+
- ".ruby-version"
|
53
|
+
- CODE_OF_CONDUCT.md
|
54
|
+
- Gemfile
|
55
|
+
- LICENSE.txt
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- bin/console
|
59
|
+
- bin/setup
|
60
|
+
- json_tagged_logging.gemspec
|
61
|
+
- lib/json_tagged_logging.rb
|
62
|
+
- lib/json_tagged_logging/formatter.rb
|
63
|
+
- lib/json_tagged_logging/version.rb
|
64
|
+
homepage: https://gitlab.com/deseretbook/packages/json-tagged-logging
|
65
|
+
licenses:
|
66
|
+
- MIT
|
67
|
+
metadata:
|
68
|
+
allowed_push_host: https://rubygems.org
|
69
|
+
homepage_uri: https://gitlab.com/deseretbook/packages/json-tagged-logging
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options: []
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 2.3.0
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
requirements: []
|
85
|
+
rubygems_version: 3.0.8
|
86
|
+
signing_key:
|
87
|
+
specification_version: 4
|
88
|
+
summary: Write your logs as JSON
|
89
|
+
test_files: []
|