ezlog 0.3.3 → 0.3.4
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 +5 -5
- data/CHANGELOG.md +10 -0
- data/lib/ezlog/rails/access_log.rb +3 -0
- data/lib/ezlog/railtie.rb +2 -1
- data/lib/ezlog/rspec.rb +1 -0
- data/lib/ezlog/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2eb0df81d18a2611151924ec5b2fc43e00ff7deb
|
|
4
|
+
data.tar.gz: 578beb59e0b295f4d04feab4325762520e292447
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81d293e8d6b038d76c11ff7756ef7dfbc69d3e25f88cbc3001fc1cb017439ab9e1941d842691183ea662a974b5b96cd650a18089dd1958e0b3d7ed9c62dca107
|
|
7
|
+
data.tar.gz: 1d23b6d01ef33641dfc92746660dd71120c5302c3ec7dfb2080494644ce4bb4b4f09c4c69dbc28f87e85ee91f554c7c74e8878ef0b98beb0ad8045fda3c08b01
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
### 0.3.4 (2019-08-14)
|
|
2
|
+
|
|
3
|
+
[Full Changelog](https://github.com/emartech/ezlog/compare/v0.3.3...v0.3.4)
|
|
4
|
+
|
|
5
|
+
* Bug fixes
|
|
6
|
+
* Ezlog is required when requiring `ezlog/rspec`. This way all dependencies are in place even if `Bundler.require`
|
|
7
|
+
wasn't called.
|
|
8
|
+
* Access log now correctly logs requests that fail with an uncaught error. Previously these requests were logged
|
|
9
|
+
with a path of `/500`.
|
|
10
|
+
|
|
1
11
|
### 0.3.3 (2019-08-10)
|
|
2
12
|
|
|
3
13
|
[Full Changelog](https://github.com/emartech/ezlog/compare/v0.3.2...v0.3.3)
|
|
@@ -12,6 +12,9 @@ module Ezlog
|
|
|
12
12
|
status, headers, body_lines = benchmark { @app.call(env) }
|
|
13
13
|
log_request ActionDispatch::Request.new(env), status
|
|
14
14
|
[status, headers, body_lines]
|
|
15
|
+
rescue Exception => ex
|
|
16
|
+
log_request ActionDispatch::Request.new(env), ActionDispatch::ExceptionWrapper.status_code_for_exception(ex.class.name)
|
|
17
|
+
raise
|
|
15
18
|
end
|
|
16
19
|
|
|
17
20
|
private
|
data/lib/ezlog/railtie.rb
CHANGED
|
@@ -15,8 +15,9 @@ module Ezlog
|
|
|
15
15
|
|
|
16
16
|
initializer 'ezlog.configure_middlewares' do |app|
|
|
17
17
|
app.config.middleware.insert_after ::ActionDispatch::RequestId, Ezlog::Rails::RequestLogContext
|
|
18
|
-
app.config.middleware.
|
|
18
|
+
app.config.middleware.delete ::Rails::Rack::Logger
|
|
19
19
|
app.config.middleware.swap ::ActionDispatch::DebugExceptions, Ezlog::Rails::DebugExceptions
|
|
20
|
+
app.config.middleware.insert_before Ezlog::Rails::DebugExceptions, Ezlog::Rails::AccessLog, Ezlog.logger('AccessLog')
|
|
20
21
|
app.config.middleware.insert_after Ezlog::Rails::DebugExceptions, Ezlog::Rails::LogExceptions, Ezlog.logger('Application')
|
|
21
22
|
end
|
|
22
23
|
|
data/lib/ezlog/rspec.rb
CHANGED
data/lib/ezlog/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ezlog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zoltan Ormandi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logging
|
|
@@ -150,7 +150,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
|
-
|
|
153
|
+
rubyforge_project:
|
|
154
|
+
rubygems_version: 2.6.13
|
|
154
155
|
signing_key:
|
|
155
156
|
specification_version: 4
|
|
156
157
|
summary: A zero-configuration logging solution for projects using Sidekiq, Rails,
|