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);