diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-02-25 01:11:38 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-02-25 01:11:38 +0000 |
commit | 946e39a8d127921e238f9b0ef480bae9b7e41411 (patch) | |
tree | c05c88d212e3bb4e85a4c1bea9b93a6a19736da7 /lldb/source/Plugins/Process/gdb-remote | |
parent | c89bb9dd51ab41216e6b27e0d639dce7adda822d (diff) | |
download | bcm5719-llvm-946e39a8d127921e238f9b0ef480bae9b7e41411.tar.gz bcm5719-llvm-946e39a8d127921e238f9b0ef480bae9b7e41411.zip |
Fix logging in GDBRemoteCommunicationServerPlatform.
llvm-svn: 230418
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp index b1946871b45..346162f305b 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp @@ -154,7 +154,7 @@ GDBRemoteCommunicationServerPlatform::Handle_qLaunchGDBServer (StringExtractorGD if (error.Success()) { if (log) - log->Printf ("LLGSPacketHandler::%s() debugserver launched successfully as pid %" PRIu64, __FUNCTION__, debugserver_pid); + log->Printf ("GDBRemoteCommunicationServerPlatform::%s() debugserver launched successfully as pid %" PRIu64, __FUNCTION__, debugserver_pid); char response[256]; const int response_len = ::snprintf (response, sizeof(response), "pid:%" PRIu64 ";port:%u;", debugserver_pid, port + m_port_offset); @@ -171,7 +171,7 @@ GDBRemoteCommunicationServerPlatform::Handle_qLaunchGDBServer (StringExtractorGD else { if (log) - log->Printf ("LLGSPacketHandler::%s() debugserver launch failed: %s", __FUNCTION__, error.AsCString ()); + log->Printf ("GDBRemoteCommunicationServerPlatform::%s() debugserver launch failed: %s", __FUNCTION__, error.AsCString ()); } return SendErrorResponse (9); #endif @@ -218,7 +218,7 @@ GDBRemoteCommunicationServerPlatform::Handle_QSetWorkingDir (StringExtractorGDBR #ifdef _WIN32 // Not implemented on Windows - return SendUnimplementedResponse ("LLGSPacketHandler::Handle_QSetWorkingDir unimplemented"); + return SendUnimplementedResponse ("GDBRemoteCommunicationServerPlatform::Handle_QSetWorkingDir unimplemented"); #else // If this packet is sent to a platform, then change the current working directory if (::chdir(path.c_str()) != 0) |