Skip to content

Commit

Permalink
Tidy interrupt output
Browse files Browse the repository at this point in the history
  • Loading branch information
smoynes committed Oct 12, 2023
1 parent 5463dbf commit eb5ebb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/vm/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (vm *LC3) Step() error {
} else if errors.Is(err, &interrupt{}) {
handler := err.(interruptableError) //nolint:errorlint

vm.log.Info("instruction raised interrupt", "OP", op, "INT", err)
vm.log.Debug("instruction raised interrupt", "OP", op, "INT", err)

if err := handler.Handle(vm); err != nil {
vm.log.Error("interrupt service routine error", "ERR", err)
Expand Down

0 comments on commit eb5ebb0

Please sign in to comment.