mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-15 19:22:19 +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…
Reference in New Issue
Block a user