remove unnecessary console log

This commit is contained in:
syumai 2024-01-04 23:12:32 +09:00
parent f97f5eb551
commit 7585460853

View File

@ -66,7 +66,6 @@ func (kv *KVNamespace) GetReader(key string, opts *KVNamespaceGetOptions) (io.Re
if err != nil {
return nil, err
}
js.Global().Get("console").Call("log", v)
return jsutil.ConvertStreamReaderToReader(v.Call("getReader")), nil
}