diff --git a/README.md b/README.md index ddb141b3..699b16e6 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ type Storage interface { ``` ## 📑 Storage Implementations - +- [Aerospike](./aerospike/README.md) - [ArangoDB](./arangodb/README.md) - [AzureBlob](./azureblob/README.md) - [Badger](./badger/README.md) diff --git a/aerospike/aerospike.go b/aerospike/aerospike.go index f8fb8dc5..e88a977c 100644 --- a/aerospike/aerospike.go +++ b/aerospike/aerospike.go @@ -76,8 +76,6 @@ func (s *Storage) createOrVerifySchema(version int, description string, forceUpd return err } - fmt.Println("Schema key:", schemaKey) - // Try to get existing schema record, err := s.client.Get(nil, schemaKey, "version", "created_at", "updated_at", "description") if err != nil { @@ -187,9 +185,6 @@ func (s *Storage) updateSchema(schemaKey *aerospike.Key, version int, descriptio Description: description, } - // Log schema update - fmt.Printf("Schema updated from version %d to %d\n", oldVersion, version) - return nil }