Skip to content

Commit

Permalink
log renderings of some components
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkrives committed Nov 10, 2015
1 parent c5285d9 commit 2c6eb0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/components/semester.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ class Semester extends Component {
}

render() {
console.log('Semester.render()')
let courseList = <Loading>Loading Courses…</Loading>

const schedule = getSchedule(this.props.student, this.props.year, this.props.semester)
Expand Down
3 changes: 2 additions & 1 deletion src/components/year.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export default class Year extends Component {
}

render() {
// console.log('Year#render')
console.log('Year.render()')

const terms = this.props.student.schedules
.filter(sched => sched.active)
.filter(sched => sched.year === this.props.year)
Expand Down
2 changes: 1 addition & 1 deletion src/screens/course-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class CourseTable extends Component {
}

render() {
// console.log('CourseTable#render')
console.log('CourseTable.render()')
if (!this.props.student) {
return null
}
Expand Down

0 comments on commit 2c6eb0d

Please sign in to comment.