Fix logging message

llvm-svn: 246776
This commit is contained in:
Pavel Labath 2015-09-03 15:44:14 +00:00
parent e564fcb165
commit ea3fb8e378
1 changed files with 1 additions and 1 deletions

View File

@ -3920,7 +3920,7 @@ Process::HaltForDestroyOrDetach(lldb::EventSP &exit_event_sp)
{
Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS));
if (log)
log->Printf("Process::Destroy() About to halt.");
log->Printf("Process::%s() About to halt.", __FUNCTION__);
error = Halt();
if (error.Success())
{