README.md in logster-0.8.2 vs README.md in logster-0.8.3
- old
+ new
@@ -23,10 +23,17 @@
constraints lambda { |req| req.session["admin"] } do
mount Logster::Web => "/logs"
end
```
+### Note
+If you are seeing error
+'No such middleware to insert before: ActionDispatch::DebugExceptions' after installing logster,
+then you are using a conflicting gem like better_errors.
+
+To avoid this error, make sure logster is added behind those conflicting gems in your Gemfile.
+
### mount using warden (devise)
```
admin_constraint = lambda do |request|
request.env['warden'].authenticate? and request.env['warden'].user.admin?
end
@@ -107,6 +114,9 @@
- Improve formatting of /show page
- Big version bump cause it is quite stable
- 2015-05-01: Version 0.8.1
- Don't crash out logging routine if redis is down or stderr is closed
- 2015-06-10: Version 0.8.2
+ - Add hostname and process_id to env on all messages
+- 2015-06-16: Version 0.8.3
+ - Chained loggers now respect chain ignore
- Add hostname and process_id to env on all messages