Skip to content

Commit 9df5d38

Browse files
committed
chore(services): remove console logs
1 parent 26ec809 commit 9df5d38

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/services/wafV2WebAcl/utils.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,13 @@ export const mapTextTransformations = (transforms: TextTransformations = []) =>
2929
export const formatSearchString = (
3030
searchString: SearchString = ''
3131
): string => {
32-
console.log('we got the search string')
33-
console.log(typeof searchString)
3432
if (searchString instanceof Blob) {
3533
return 'blob'
3634
}
3735
if (searchString instanceof Uint8Array) {
38-
console.log('search string is a array')
3936
return Buffer.from(searchString).toString()
4037
}
4138
if (searchString instanceof Buffer) {
42-
console.log('search string is a buffer')
4339
return searchString.toString()
4440
}
4541

0 commit comments

Comments
 (0)