Deleted debug fmt.Println statements

This commit is contained in:
Kelvin Clement Mwinuka
2024-05-26 02:01:06 +08:00
parent af8a002ba5
commit 9f371caa4b
2 changed files with 0 additions and 13 deletions

View File

@@ -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

View File

@@ -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
}