Skip to content

Commit 236857c

Browse files
committed
fix log scopes
1 parent d487552 commit 236857c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

codex/slots/builder/builder.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import ../converters
3232
export converters, asynciter
3333

3434
logScope:
35-
topics = "codex slotsbuilder"
35+
topics = "codex slots builder"
3636

3737
type SlotsBuilder*[SomeTree, SomeHash] = ref object of RootObj
3838
store: BlockStore

codex/slots/proofs/backends/circomcompat.nim

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ import ./converters
2525

2626
export circomcompat, converters
2727

28+
logScope:
29+
topics = "codex backend circomcompat"
30+
2831
type
2932
CircomCompatBackend* = object
3033
slotDepth: int # max depth of the slot tree

codex/slots/proofs/backends/nimgroth16.nim

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ import ./converters
3131

3232
export converters
3333

34+
logScope:
35+
topics = "codex backend nimgroth16"
36+
3437
const DefaultCurve* = "bn128"
3538

3639
type

codex/slots/sampler/sampler.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import ../types
2727
import ./utils
2828

2929
logScope:
30-
topics = "codex datasampler"
30+
topics = "codex slots sampler"
3131

3232
type DataSampler*[SomeTree, SomeHash] = ref object of RootObj
3333
index: Natural

0 commit comments

Comments
 (0)