Skip to content

Commit

Permalink
txscript: always trace
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Nov 5, 2024
1 parent 24eb815 commit 5ccfe34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions txscript/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ func (vm *Engine) Execute() (err error) {

done := false
for !done {
log.Tracef("%v", newLogClosure(func() string {
log.Infof("%v", newLogClosure(func() string {
dis, err := vm.DisasmPC()
if err != nil {
return fmt.Sprintf("stepping - failed to disasm pc: %v", err)
Expand All @@ -1105,7 +1105,7 @@ func (vm *Engine) Execute() (err error) {
if err != nil {
return err
}
log.Tracef("%v", newLogClosure(func() string {
log.Infof("%v", newLogClosure(func() string {
var dstr, astr string

// Log the non-empty stacks when tracing.
Expand Down

0 comments on commit 5ccfe34

Please sign in to comment.