File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
rolling-shutter/keyperimpl/gnosis Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ func (kpr *Keyper) maybeTriggerDecryption(ctx context.Context, slot uint64) erro
64
64
queries := obskeyper .New (kpr .dbpool )
65
65
keyperSet , err := queries .GetKeyperSet (ctx , nextBlock )
66
66
if err == pgx .ErrNoRows {
67
- log .Debug ().
67
+ log .Info ().
68
68
Uint64 ("slot" , slot ).
69
69
Int64 ("block-number" , nextBlock ).
70
70
Msg ("skipping slot as no keyper set has been found for it" )
@@ -76,7 +76,7 @@ func (kpr *Keyper) maybeTriggerDecryption(ctx context.Context, slot uint64) erro
76
76
77
77
// don't trigger if we're not part of the keyper set
78
78
if ! keyperSet .Contains (kpr .config .GetAddress ()) {
79
- log .Debug ().
79
+ log .Info ().
80
80
Uint64 ("slot" , slot ).
81
81
Int64 ("block-number" , nextBlock ).
82
82
Int64 ("keyper-set-index" , keyperSet .KeyperConfigIndex ).
@@ -91,7 +91,7 @@ func (kpr *Keyper) maybeTriggerDecryption(ctx context.Context, slot uint64) erro
91
91
return err
92
92
}
93
93
if ! isRegistered {
94
- log .Debug ().
94
+ log .Info ().
95
95
Uint64 ("slot" , slot ).
96
96
Uint64 ("proposer-index" , proposerIndex ).
97
97
Msg ("skipping slot as proposer is not registered" )
You can’t perform that action at this time.
0 commit comments