Skip to content

Commit 6507dae

Browse files
committed
feat: add log statements for sourceId
1 parent c23877f commit 6507dae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/testutils.go

+2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ import (
2121
var testSourceId int = 1
2222

2323
func GetTestSourceId() int {
24+
log.Printf("Using source id %d...", testSourceId)
2425
return testSourceId
2526
}
2627

2728
func SetTestSourceId(id int) {
29+
log.Printf("Setting source id %d...", id)
2830
testSourceId = id
2931
}
3032

0 commit comments

Comments
 (0)