mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
remove a log message about fetching URLs (#643)
Every fetch made from the client is logged to the console. But this isn't really necessary, and is particularly confusing in grist-static, where those fetches are virtualized. Tests in grist-saas may need adjusting to remove the logger.
This commit is contained in:
@@ -14,7 +14,6 @@ import {getDocWorkerMap} from 'app/gen-server/lib/DocWorkerMap';
|
||||
import {HomeDBManager} from 'app/gen-server/lib/HomeDBManager';
|
||||
import * as docUtils from 'app/server/lib/docUtils';
|
||||
import {FlexServer, FlexServerOptions} from 'app/server/lib/FlexServer';
|
||||
import log from 'app/server/lib/log';
|
||||
import {main as mergedServerMain, ServerType} from 'app/server/mergedServerMain';
|
||||
import axios from 'axios';
|
||||
import FormData from 'form-data';
|
||||
@@ -287,7 +286,6 @@ export class TestSession {
|
||||
fetch: fetch as any,
|
||||
headers,
|
||||
newFormData: () => new FormData() as any,
|
||||
logger: log,
|
||||
});
|
||||
// Make sure api is functioning, and create user if this is their first time to hit API.
|
||||
if (checkAccess) { await api.getOrg('current'); }
|
||||
|
||||
Reference in New Issue
Block a user