We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0730e45 commit ecad225Copy full SHA for ecad225
internal/database/operation.go
@@ -155,15 +155,15 @@ func (d *Database) ApplyOracleFile(
155
}
156
vh := blake2b.Sum256(canon)
157
if e.OperationType == OpInsert {
158
- logger.Infow(
+ logger.Debugw(
159
"TRIE_DEBUG(APPLY): trie set",
160
"key",
161
hex.EncodeToString(kh[:]),
162
"value",
163
hex.EncodeToString(vh[:]),
164
)
165
} else {
166
167
"TRIE_DEBUG(APPLY): trie update",
168
169
@@ -175,7 +175,7 @@ func (d *Database) ApplyOracleFile(
175
return err
176
177
case OpDelete:
178
179
"TRIE_DEBUG(APPLY): trie delete",
180
181
0 commit comments