Skip to content

Commit 2c89f7c

Browse files
authored
Merge pull request #262 from parthlambdatest/Dot-5015
[Dot-5015] remove dom logging in log file
2 parents cecae21 + ac51713 commit 2c89f7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambdatest/smartui-cli",
3-
"version": "4.1.7-beta.0",
3+
"version": "4.1.7-beta.1",
44
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
55
"files": [
66
"dist/**/*"

src/lib/httpClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default class httpClient {
8888

8989
async request(config: AxiosRequestConfig, log: Logger): Promise<Record<string, any>> {
9090
log.debug(`http request: ${config.method} ${config.url}`);
91-
if (config && config.data && !config.data.name) {
91+
if (config && config.data && !config.data.name && !config.data.snapshot) {
9292
log.debug(config.data);
9393
}
9494
if (config && config.data && config.data.snapshotUuid) {

0 commit comments

Comments
 (0)