start honoring the debugging flag for more output
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
7bcdefb94a
commit
f283a656dc
9
area.go
9
area.go
|
@ -19,7 +19,14 @@ func makeSplashArea(custom func(int, string)) *ui.Area {
|
||||||
makeAttributedString()
|
makeAttributedString()
|
||||||
Data.splashArea = ui.NewArea(myAH)
|
Data.splashArea = ui.NewArea(myAH)
|
||||||
|
|
||||||
spew.Dump(Data.splashArea)
|
if (Data.Debug) {
|
||||||
|
spew.Dump(Data.splashArea)
|
||||||
|
log.Println("DEBUGGING", Data.Debug)
|
||||||
|
} else {
|
||||||
|
log.Println("NOT DEBUGGING", Data.Debug)
|
||||||
|
log.Println("NOT DEBUGGING", Data.Debug)
|
||||||
|
log.Println("NOT DEBUGGING", Data.Debug)
|
||||||
|
}
|
||||||
return Data.splashArea
|
return Data.splashArea
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue