diff --git a/echovault/keyspace.go b/echovault/keyspace.go index 680702d..16a5cc6 100644 --- a/echovault/keyspace.go +++ b/echovault/keyspace.go @@ -113,15 +113,6 @@ func (server *EchoVault) setValues(ctx context.Context, entries map[string]inter } for key, value := range entries { - - // TODO: Delete this - if strings.Contains(key, "source") { - fmt.Println("SET SOURCE: ", value) - } - if strings.Contains(key, "destination") { - fmt.Println("SET DESTINATION: ", value) - } - expireAt := time.Time{} if _, ok := server.store[key]; ok { expireAt = server.store[key].ExpireAt diff --git a/internal/modules/list/commands.go b/internal/modules/list/commands.go index 1af031b..74b353e 100644 --- a/internal/modules/list/commands.go +++ b/internal/modules/list/commands.go @@ -350,10 +350,6 @@ func handleLMove(params internal.HandlerFuncParams) ([]byte, error) { return nil, err } - checkLists := params.GetValues(params.Context, []string{source, destination}) - fmt.Println("NEW SOURCE LIST: ", checkLists[source]) - fmt.Println("NEW DESTINATION LIST: ", checkLists[destination]) - return []byte(constants.OkResponse), nil }