Skip to content

Commit

Permalink
server: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Oct 23, 2023
1 parent 90a1221 commit 28f785d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/servermon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ struct MonitorOp final : public ServerOp

op->scheduled = true;
} else {
log_debug_printf(connio, "Skip reply%s", "\n");
log_debug_printf(connio, "Skip reply sch=%c st=%u q=%zu p=%c w=%zu\n",
op->scheduled ? 'Y' : 'N',
op->state,
op->queue.size(),
op->pipeline ? 'Y' : 'N',
op->window);
}
}

Expand Down

0 comments on commit 28f785d

Please sign in to comment.