Skip to content

Commit 3659bcf

Browse files
authored
gdbserver: correct log message in v_command handler (#1839)
1 parent aefe960 commit 3659bcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyocd/gdbserver/gdbserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def v_command(self, client, data):
964964
LOG.debug("Command: vStopped notification")
965965
return self.create_rsp_packet(b"OK")
966966

967-
LOG.debug("Command: %s: Unknown command", to_str_safe(cmd))
967+
LOG.debug("Command: v%s: Unknown command", to_str_safe(cmd))
968968
return self.create_rsp_packet(b"")
969969

970970
# Example: $vCont;s:1;c#c1

0 commit comments

Comments
 (0)