Skip to content
Snippets Groups Projects
Commit 71b32c49 authored by Scott Berg's avatar Scott Berg
Browse files

ROENROLL-1700

Remove dev logging
parent c90a8908
No related branches found
No related tags found
No related merge requests found
Pipeline #37630 passed
......@@ -252,7 +252,6 @@ export class DegreePlannerComponent implements OnInit {
}
}
}
// console.log(termCodes);
return termCodes;
}
......
......@@ -31,12 +31,9 @@ export class RemoveCourseConfirmDialogComponent implements OnInit {
removeCourse() {
switch (this.type) {
case 'saved':
console.log('remove course from saved');
break;
case 'course':
console.log('remove course from term');
console.log(this.course);
const id = this.course.id;
if (typeof id === 'number') {
const fromTermCode = this.termCodeService.fromString(
......
......@@ -272,14 +272,6 @@ export class CourseItemComponent implements OnInit {
.subscribe((result: { confirmed: boolean }) => {
// If the user confirmed the removal, remove course
if (result && result.confirmed) {
console.log(this.type);
console.log({
type: this.type,
fromTermCode: this.course.termCode,
recordId: this.course.id,
});
switch (this.type) {
case 'course':
this.store.dispatch(
......
......@@ -59,7 +59,6 @@ export class DegreePlanEffects {
ofType(ROOT_EFFECTS_INIT),
// Load the list of degree plans and data used by all degree plans.
flatMap(() => {
console.log('loading all degree plans');
return forkJoinWithKeys({
allDegreePlans: this.api.getAllDegreePlans(),
activeTermCodes: this.api.getActiveTermCodes(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment