Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Mar 23, 2023
1 parent 31d7669 commit bb6ce05
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion runtime/devicescript/devsdbg.c
Expand Up @@ -562,8 +562,10 @@ static void read_bytes(cmd_t *cmd) {

static void resume_cmd(cmd_t *cmd) {
cmd->state->suspended = 0;
if (cmd->ctx)
if (cmd->ctx) {
LOG("resume");
devs_vm_resume(cmd->ctx);
}
}

static void step_cmd(cmd_t *cmd) {
Expand Down

0 comments on commit bb6ce05

Please sign in to comment.