Skip to content

Commit

Permalink
Remove debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot committed Jun 29, 2019
1 parent 488ac60 commit d310753
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions handlers/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,6 @@ func actionRedrawGrid(ctx *context.AppContext, threads bool, debug bool) {
}

if threads && debug {
ctx.View.Debug.Println(
"threads && debug",
)

columns = append(
columns,
[]*termui.Row{
Expand All @@ -234,10 +230,6 @@ func actionRedrawGrid(ctx *context.AppContext, threads bool, debug bool) {
)

} else if threads {
ctx.View.Debug.Println(
"threads",
)

columns = append(
columns,
[]*termui.Row{
Expand All @@ -246,9 +238,6 @@ func actionRedrawGrid(ctx *context.AppContext, threads bool, debug bool) {
}...,
)
} else if debug {
ctx.View.Debug.Println(
"debug",
)
columns = append(
columns,
[]*termui.Row{
Expand All @@ -266,8 +255,6 @@ func actionRedrawGrid(ctx *context.AppContext, threads bool, debug bool) {
),
)

// ctx.Body.Align()
// termui.Render(ctx.Body)
termui.Body.Align()
termui.Render(termui.Body)
}
Expand Down

0 comments on commit d310753

Please sign in to comment.