Debug logging functions

This commit is contained in:
obscuren 2014-02-19 16:27:35 +01:00
parent d4cc125456
commit 39b6eaf51c
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func (st *Stack) Push(d *big.Int) {
st.data = append(st.data, d)
}
func (st *Stack) Print() {
fmt.Println("# val (STACK)")
fmt.Println("### STACK ###")
if len(st.data) > 0 {
for i, val := range st.data {
fmt.Printf("%-3d %v\n", i, val)
@ -171,4 +171,5 @@ func (st *Stack) Print() {
} else {
fmt.Println("-- empty --")
}
fmt.Println("#############")
}