Skip to content

Commit 023a85f

Browse files
committed
chore: remove logs
1 parent 13970b5 commit 023a85f

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

bin/testObservability/helper/helper.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,10 +475,6 @@ const RequestQueueHandler = require('./requestQueueHandler');
475475
exports.requestQueueHandler = new RequestQueueHandler();
476476

477477
exports.uploadEventData = async (eventData, run=0) => {
478-
exports.debug("I aminside upload event data")
479-
exports.debug(JSON.stringify(eventData))
480-
consoleHolder.log("I aminside upload event data")
481-
consoleHolder.log(JSON.stringify(eventData))
482478
const log_tag = {
483479
['TestRunStarted']: 'Test_Start_Upload',
484480
['TestRunFinished']: 'Test_End_Upload',

bin/testObservability/reporter/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ class MyReporter {
103103

104104
.on(EVENT_HOOK_END, async (hook) => {
105105
if(this.testObservability == true) {
106-
// console.log("At hook end bool", this.runStatusMarkedHash[hook.hookAnalyticsId])
107106
if(!this.runStatusMarkedHash[hook.hookAnalyticsId]) {
108107
if(!hook.hookAnalyticsId) {
109108
/* Hook objects don't maintain uuids in Cypress-Mocha */
@@ -112,7 +111,7 @@ class MyReporter {
112111
} else {
113112
this.runStatusMarkedHash[hook.hookAnalyticsId] = true;
114113
}
115-
console.log("Sending hook finished ", hook.hookAnalyticsId);
114+
116115
// Remove hooks added at hook start
117116
delete this.hooksStarted[hook.hookAnalyticsId];
118117
await this.sendTestRunEvent(hook,undefined,false,"HookRunFinished");

0 commit comments

Comments
 (0)