Skip to content

Commit fe7e327

Browse files
authored
Add TopicField constant (#188)
* add TopicField constant * add CountField constant
2 parents 0436c79 + 59d1830 commit fe7e327

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

logger.go

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,23 @@ import (
1010
)
1111

1212
const (
13-
ScopeField = "scope"
1413
ProjectField = "project"
1514
ShopField = "shop"
1615
CheckoutField = "checkout"
1716
OrderField = "order"
1817
TransactionField = "transaction"
1918
CheckoutDeviceField = "checkoutDevice"
20-
DurationField = "duration"
21-
FlakyField = "flaky"
22-
TypeField = "type"
23-
ResponseField = "response"
24-
PayloadField = "payload"
2519

20+
DurationField = "duration"
21+
FlakyField = "flaky"
22+
ResponseField = "response"
23+
PayloadField = "payload"
24+
CountField = "count"
25+
26+
ScopeField = "scope"
27+
TopicField = "topic"
28+
29+
TypeField = "type"
2630
TypeDeprecation = "deprecation"
2731
TypeCall = "call"
2832
TypeAccess = "access"

0 commit comments

Comments
 (0)