debug_logging 3.1.3 → 3.1.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 +4 -4
- data/README.md +5 -5
- data/lib/debug_logging/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3b22568d767ce27e04784bc0c5884d256dac350db70c0a55e4c3d0111b00e4b
|
|
4
|
+
data.tar.gz: a3d0a5b1fa588b2b9c7596ce52e3e46b04724a460cf825c1393c0bd358117fc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd581ea6179d7cc21fa501f0ab7870a2e9d25a664ae544999aa0f703fc351955b7fb5a6c1eacafb3946dd6dde7e6c246a3bebac37af07572c21adc4d0a169e15
|
|
7
|
+
data.tar.gz: a6ae636072c6e60d19831b4ffa1012b4d7dfd1c67a7e78384f7ad6c004e57e729f83dcd24043938a0c03049722fe477bef7ed4ac9c7bce9c7e80ffc76b48e698
|
data/README.md
CHANGED
|
@@ -37,11 +37,11 @@ Supports ActiveSupport::Notifications (thanks [@jgillson](https://github.com/jgi
|
|
|
37
37
|
* *separate loggers, if needed*
|
|
38
38
|
* *log method calls, also when exit scope*
|
|
39
39
|
* *Prevents heavy computation of strings with `logger.debug { 'log me' }` block format, since v1.0.12*
|
|
40
|
-
* *ActiveSupport::Notifications integration for instrumenting/logging events on class and instance methods, since v3.
|
|
41
|
-
* *Optional instance, and class-instance, variable logging, since v3.
|
|
42
|
-
* *ActiveRecord style callback-hooks (optional: `require 'debug_logging/hooks'` and `include DebugLogging::Hooks`), since v3.
|
|
43
|
-
* *All configuration is inheritable to, and overridable by, child classes, since v3.
|
|
44
|
-
* *[Class finalization hook](https://stackoverflow.com/a/34559282) (optional: `require 'debug_logging/finalize'` and `extend DebugLogging::Finalize`), since v3.
|
|
40
|
+
* *ActiveSupport::Notifications integration for instrumenting/logging events on class and instance methods, since v3.1.3*
|
|
41
|
+
* *Optional instance, and class-instance, variable logging, since v3.1.3*
|
|
42
|
+
* *ActiveRecord style callback-hooks (optional: `require 'debug_logging/hooks'` and `include DebugLogging::Hooks`), since v3.1.3*
|
|
43
|
+
* *All configuration is inheritable to, and overridable by, child classes, since v3.1.3*
|
|
44
|
+
* *[Class finalization hook](https://stackoverflow.com/a/34559282) (optional: `require 'debug_logging/finalize'` and `extend DebugLogging::Finalize`), since v3.1.3*
|
|
45
45
|
* **so many free ponies** 🎠🐴🎠🐴🎠🐴
|
|
46
46
|
|
|
47
47
|
## Next Level Magic
|