feat(schema/indexer)!: implement start indexing (#21636)

Co-authored-by: Marko <marko@baricevic.me>
This commit is contained in:
Aaron Craelius
2024-09-23 16:09:01 +00:00
committed by GitHub
co-authored by Marko
parent f3a295a1a1
commit d273ae03da
17 changed files with 570 additions and 170 deletions
+7
View File
@@ -21,6 +21,13 @@ type Logger interface {
Debug(msg string, keyVals ...interface{})
}
// ScopeableLogger is a logger that can be scoped with key/value pairs.
// It is implemented by all the loggers in cosmossdk.io/log.
type ScopeableLogger interface {
// WithContext returns a new logger with the provided key/value pairs set.
WithContext(keyVals ...interface{}) interface{}
}
// NoopLogger is a logger that doesn't do anything.
type NoopLogger struct{}