From 7118a597f1a709bab531574d198cec8b22f01f8b Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Fri, 8 Jul 2022 12:53:34 +0200 Subject: [PATCH] remove logs --- components/report-window/problems/no-information-at-all.tsx | 1 - components/report-window/use-survey.ts | 1 - components/sidebar/stolen-data-cluster.tsx | 4 ---- extended-request.ts | 3 --- 4 files changed, 9 deletions(-) diff --git a/components/report-window/problems/no-information-at-all.tsx b/components/report-window/problems/no-information-at-all.tsx index a0ef0f5..58b06f3 100644 --- a/components/report-window/problems/no-information-at-all.tsx +++ b/components/report-window/problems/no-information-at-all.tsx @@ -37,7 +37,6 @@ export default class NoInformationAtAllProblem extends Problem { if ( this.getMarkedClusters().some((cluster) => { - console.log(cluster); return cluster.hasMarkedCookies(); }) ) { diff --git a/components/report-window/use-survey.ts b/components/report-window/use-survey.ts index 9f1cbfd..39ef13b 100644 --- a/components/report-window/use-survey.ts +++ b/components/report-window/use-survey.ts @@ -12,7 +12,6 @@ export default function useSurvey( const [survey, setSurvey] = React.useState(null); React.useEffect(() => { const model = generateSurveyQuestions(clusters); - console.log(model); const survey = new Survey.Model(model); survey.onProcessTextValue.add(function ( sender: Survey.SurveyModel, diff --git a/components/sidebar/stolen-data-cluster.tsx b/components/sidebar/stolen-data-cluster.tsx index 2d1e4c0..65d0514 100644 --- a/components/sidebar/stolen-data-cluster.tsx +++ b/components/sidebar/stolen-data-cluster.tsx @@ -119,10 +119,6 @@ export default function StolenDataCluster({ const fullHosts = cluster.getFullHosts(); const [version] = useEmitter(cluster); - /* console.log('Stolen data cluster!', shorthost, refreshToken); */ - - console.log(cluster.getMarkedEntries()); - return (
diff --git a/extended-request.ts b/extended-request.ts index 37a4091..54df8d3 100644 --- a/extended-request.ts +++ b/extended-request.ts @@ -91,9 +91,6 @@ export default class ExtendedRequest { this.url = data.url; this.shorthost = getshorthost(data.url); this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {}; - if (this.url.includes('criteo')) { - console.log(this); - } ExtendedRequest.by_id[data.requestId] = this; this.data = Object.assign({}, data);