mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-06 01:16:01 +08:00
fix(scrapeURL): don't log fetch request
This commit is contained in:
parent
f42740a109
commit
e95b6656fa
@ -32,8 +32,6 @@ export async function robustFetch<Schema extends z.Schema<any>, Output = z.infer
|
|||||||
}: RobustFetchParams<Schema>): Promise<Output> {
|
}: RobustFetchParams<Schema>): Promise<Output> {
|
||||||
const params = { url, logger, method, body, headers, schema, ignoreResponse, ignoreFailure, tryCount };
|
const params = { url, logger, method, body, headers, schema, ignoreResponse, ignoreFailure, tryCount };
|
||||||
|
|
||||||
logger.debug("Sending request...", { params, requestId });
|
|
||||||
|
|
||||||
let request: Response;
|
let request: Response;
|
||||||
try {
|
try {
|
||||||
request = await fetch(url, {
|
request = await fetch(url, {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user