ignore, logs

This commit is contained in:
2026-01-24 15:02:44 -03:00
parent 92c8d76b60
commit 17bb8a15fe
3 changed files with 8 additions and 6 deletions

View File

@@ -2,6 +2,6 @@ import { log } from "./logger.js"
export async function ubicacion(lugar: string, limit = '1') {
const response = await fetch(`${process.env.WEATHER_URL}/geo/1.0/direct?q=${lugar}&limit=${limit}&appid=${process.env.WEATHER_API_KEY}`)
log('GET', response.url, response.status)
log('GET', response)
return response
}