Skip to content

Commit 96d6bf1

Browse files
authored
fix: remove redundant error logging in JSON parsing (#3759)
1 parent f5ff40a commit 96d6bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/bruno-cli/src/utils/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const parseDataFromResponse = (response, disableParsingResponseJson = false) =>
4444
data = JSON.parse(data);
4545
}
4646
} catch {
47-
console.log('Failed to parse response data as JSON');
47+
4848
}
4949

5050
return { data, dataBuffer };

0 commit comments

Comments
 (0)