Reduce logs (#342)

This commit is contained in:
Yadd
2024-01-23 12:53:13 +04:00
committed by GitHub
parent 164a125995
commit 99e0c548e6
2 changed files with 2 additions and 3 deletions
@@ -78,7 +78,7 @@ export class TwakeDriveClient {
item,
version,
});
logger.info(response);
logger.info(response.data);
return response.data;
};
@@ -87,7 +87,7 @@ export class TwakeDriveClient {
const response
= await (await this.client()).get(`${this.config.url}/internal/services/documents/v1/companies/00000000-0000-4000-0000-000000000000/item/${id}`, {
});
logger.info(response);
logger.info(response.data);
return response.data;
}