evt-consumer 0.11.1.2 → 0.11.1.3
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/lib/consumer/position_store.rb +4 -4
- 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: f1edb06b610b93019191e66b6499520489a889cf3346c82260db3e8322fda7ba
|
4
|
+
data.tar.gz: c485fe1d5d75022d305d0cdfe2bdddfb4b4ca1131a2bfd9a060fee6b3e9bb728
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc96bb55f3f8041e93e57307f322081126ee0fdd04566608916aceff596e176e661367e7393690bab49fa6530685193e9f0c2cdd9370dd66d9f8d7692f04117d
|
7
|
+
data.tar.gz: f99d48639a1a9f467871c045c9412c2b53e05eebb6b9dd334dfb68230ee8015302b18cb846233b477039753e4c247c4dd32602f8a0354417f18e6ce0bc0a6697
|
@@ -56,11 +56,11 @@ module Consumer
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def get
|
59
|
-
logger.trace(
|
59
|
+
logger.trace(tags: [:position_store, :get]) { "Get position" }
|
60
60
|
|
61
61
|
position = super
|
62
62
|
|
63
|
-
logger.info(
|
63
|
+
logger.info(tags: [:position_store, :get]) { "Get position done (Position: #{position || '(none)'})" }
|
64
64
|
|
65
65
|
telemetry.record(:get, Telemetry::Get.new(position))
|
66
66
|
|
@@ -74,11 +74,11 @@ module Consumer
|
|
74
74
|
end
|
75
75
|
|
76
76
|
def put(position)
|
77
|
-
logger.trace(
|
77
|
+
logger.trace(tags: [:position_store, :put]) { "Put position (Position: #{position})" }
|
78
78
|
|
79
79
|
super
|
80
80
|
|
81
|
-
logger.info(
|
81
|
+
logger.info(tags: [:position_store, :put]) { "Put position done (Position: #{position})" }
|
82
82
|
|
83
83
|
telemetry.record(:put, Telemetry::Put.new(position))
|
84
84
|
|