Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn committed Sep 1, 2023
1 parent 3b5b87e commit 9f51095
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/client-common/src/error/parse_error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export class ClickHouseError extends Error {
}

export function parseError(input: string | Error): ClickHouseError | Error {
console.error(input)
const inputIsError = input instanceof Error
const message = inputIsError ? input.message : input
const match = message.match(errorRe)
Expand Down

0 comments on commit 9f51095

Please sign in to comment.