how do you all do logging?
how do you all do logging?






These days, port 25 is mainly used for SMTP Relaying – transmitting messages between different email servers. It’s not recommended to use for email submission unless you specifically manage your own mail server.https://mailtrap.io/blog/smtp-ports-25-465-587-used-for/
+server.tsexpires_inexpires_inve been having this issue for a while now.
My wrangler version: const cfCache = await platform.caches.open("(cache name here)");
const cacheMatch = await cfCache.match(cacheURL) as Response | undefined;
if(cacheMatch) {
const responseGeneratedRaw = cacheMatch.headers.get("x-response-generated");
if(responseGeneratedRaw) {
const responseGenerated = new Date(responseGeneratedRaw);
if(Date.now() - responseGenerated.getTime() < cache_time) {
// return data from cache match
}
}
}platform?.context?.waitUntil(
cfCache.put(cacheURL, await createMFResponse(jsonResponse.clone()) as Response)
)TypeError: Cannot read properties of undefined (reading 'fetch')