Skip to content

Commit 8285a98

Browse files
committed
fix: disable debug logging for filter application in BrokerShim
1 parent 4b35b15 commit 8285a98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/app-react-crud/src/mocks/createKernel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export async function createKernel(options: KernelOptions) {
8383
const keys = Object.keys(filters).filter(k => !reserved.includes(k));
8484

8585
if (keys.length > 0) {
86-
console.log('[BrokerShim debug] Applying filters:', keys);
86+
// console.log('[BrokerShim debug] Applying filters:', keys);
8787
all = all.filter((item: any) => {
8888
return keys.every(k => {
8989
// Loose equality check

0 commit comments

Comments
 (0)