"Avoid using debug log or print statements in production code."
Description
This PR removes the commented out debug log statements from the codebase. The debug log statements were found in the files src/pipeline/preprocess/preQuery.ts and tests/unit/mutations/mutationInit.test.ts. These statements were not necessary for the functionality of the code and could clutter the codebase. Removing them improves the readability and cleanliness of the code.
Summary of Changes
In src/pipeline/preprocess/preQuery.ts:
Removed the commented out debug log statement on line 108.
Removed the commented out debug log statement on line 126.
Removed the commented out debug log statement on line 169.
Removed the commented out debug log statement on line 183.
Removed the commented out debug log statement on line 197.
In tests/unit/mutations/mutationInit.test.ts:
Scanned the entire file for any commented out debug log statements.
Removed any found commented out debug log statements.
These changes improve the codebase by removing unnecessary clutter and improving code readability.
PR Feedback (click)
I created this PR to address this rule:
"Avoid using debug log or print statements in production code."
Description
This PR removes the commented out debug log statements from the codebase. The debug log statements were found in the files
src/pipeline/preprocess/preQuery.ts
andtests/unit/mutations/mutationInit.test.ts
. These statements were not necessary for the functionality of the code and could clutter the codebase. Removing them improves the readability and cleanliness of the code.Summary of Changes
In
src/pipeline/preprocess/preQuery.ts
:In
tests/unit/mutations/mutationInit.test.ts
:These changes improve the codebase by removing unnecessary clutter and improving code readability.