Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Aug 8, 2024
1 parent 17d4928 commit 3605942
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ export async function cloneJob(
mlJobService,
jobId
) {
console.log('CLONE JOB');
try {
const [{ job: cloneableJob, datafeed }, originalJob] = await Promise.all([
loadJobForCloning(mlApiServices, jobId),
Expand Down
4 changes: 0 additions & 4 deletions x-pack/plugins/ml/public/application/services/job_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ let datafeedIds = {};

class JobService {
constructor(toastNotificationService, ml) {
console.log('CONSTRUCTOR!!');
this.toastNotificationService = toastNotificationService;
this.ml = ml;

Expand Down Expand Up @@ -425,7 +424,6 @@ class JobService {
}

stashJobForCloning(jobCreator, skipTimeRangeStep, includeTimeRange, autoSetTimeRange) {
console.log('STASH START', jobCreator);
const tempJobCloningObjects = {
job: jobCreator.jobConfig,
datafeed: jobCreator.datafeedConfig,
Expand All @@ -442,7 +440,6 @@ class JobService {
: { autoSetTimeRange: true }),
};

console.log('STASH!!!', tempJobCloningObjects);
this.tempJobCloningObjects = tempJobCloningObjects;
}
}
Expand Down Expand Up @@ -602,7 +599,6 @@ let mlJobService;
export const mlJobServiceFactory = (toastNotificationService, mlApiServices) => {
if (mlJobService) return mlJobService;

console.log('NEW INSTANCE!!');
mlJobService = new JobService(toastNotificationService, mlApiServices);
return mlJobService;
};
Expand Down

0 comments on commit 3605942

Please sign in to comment.