simple_cloud_logging 1.2.4 → 1.2.5
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 +1 -1
- data/lib/baselogger.rb +1 -0
- 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: bd683ff7fe52dc2c5c198ed4ced779a1986555f0fac5532d3bec1155aa57ea73
|
4
|
+
data.tar.gz: 4a9a8e2c3029cce1ddd2f66d563a99bdc547af132363d1a5eb8f19fd45679a92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32c8feeefd5612315202a796fb0e95c4db9267f57911052dc89d6edad3246d265fe56169cc7925115a57a724344ff76f6e7eddccfa0d8a55139cff13784da58f
|
7
|
+
data.tar.gz: 62938069cb37361de620e4c6c3b6f991337f287b09164683bf9e21aeefe5a641171c0599f11b7ee9ca3bbd084527bce4530c390d706c8fda1d2f04d872ca1817
|
data/README.md
CHANGED
@@ -490,7 +490,7 @@ end # class FooClass
|
|
490
490
|
|
491
491
|
## 18. Versioning
|
492
492
|
|
493
|
-
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the last [ruby gem](https://rubygems.org/gems/
|
493
|
+
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the last [ruby gem](https://rubygems.org/gems/simple_cloud_logging).
|
494
494
|
|
495
495
|
## 19. Authors
|
496
496
|
|
data/lib/baselogger.rb
CHANGED
@@ -144,6 +144,7 @@ module BlackStack
|
|
144
144
|
caller = caller_locations(0..).last
|
145
145
|
#binding.pry if s == '1... '
|
146
146
|
#binding.pry if s == '4... '
|
147
|
+
|
147
148
|
# if the parent level was called from the same line, I am missing to close the parent.
|
148
149
|
if self.level_open_callers[self.level-1].to_s == caller.to_s
|
149
150
|
if Logger.nesting_assertion
|