Skip to content

Commit

Permalink
gdb: reduce verbosity of "no attached processes" message
Browse files Browse the repository at this point in the history
  • Loading branch information
misson20000 committed Apr 1, 2019
1 parent 53cabb1 commit 97e047e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twib/tool/GdbStub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ void GdbStub::HandleSetCurrentThread(util::Buffer &packet) {
if(attached_processes.begin() != attached_processes.end()) {
proc = &attached_processes.begin()->second;
} else {
LogMessage(Error, "no attached processes");
LogMessage(Debug, "no attached processes");
connection.RespondError(1);
return;
}
Expand Down

0 comments on commit 97e047e

Please sign in to comment.