summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Au <cshung@gmail.com>2018-11-02 17:22:36 -0700
committerGitHub <noreply@github.com>2018-11-02 17:22:36 -0700
commitece243dfde28a2eb2505daf68e432dd0c4d7b6c6 (patch)
tree65ed79cd164cd2d80a7e48288295af511b964ccf
parentdd6c69022fbbe4111551f76bb9f9804538cf1e2e (diff)
downloadcoreclr-ece243dfde28a2eb2505daf68e432dd0c4d7b6c6.tar.gz
coreclr-ece243dfde28a2eb2505daf68e432dd0c4d7b6c6.tar.bz2
coreclr-ece243dfde28a2eb2505daf68e432dd0c4d7b6c6.zip
Fix logging so that we can see the full 64 bit integer in the log file (#20741)
-rw-r--r--src/debug/ee/controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug/ee/controller.cpp b/src/debug/ee/controller.cpp
index 9d45037ef0..68e43de052 100644
--- a/src/debug/ee/controller.cpp
+++ b/src/debug/ee/controller.cpp
@@ -7381,7 +7381,7 @@ void DebuggerStepper::TriggerMethodEnter(Thread * thread,
// We never single-step into calls (we place a patch at the call destination).
bool DebuggerStepper::TriggerSingleStep(Thread *thread, const BYTE *ip)
{
- LOG((LF_CORDB,LL_INFO10000,"DS:TSS this:0x%x, @ ip:0x%x\n", this, ip));
+ LOG((LF_CORDB,LL_INFO10000,"DS:TSS this:0x%p, @ ip:0x%p\n", this, ip));
_ASSERTE(!IsFrozen());
@@ -7443,7 +7443,7 @@ bool DebuggerStepper::TriggerSingleStep(Thread *thread, const BYTE *ip)
DisableAll();
- LOG((LF_CORDB,LL_INFO10000, "DS::TSS m_fp:0x%x, activeFP:0x%x fpExc:0x%x\n",
+ LOG((LF_CORDB,LL_INFO10000, "DS::TSS m_fp:0x%p, activeFP:0x%p fpExc:0x%p\n",
m_fp.GetSPValue(), info.m_activeFrame.fp.GetSPValue(), m_fpException.GetSPValue()));
if (DetectHandleLCGMethods((PCODE)ip, fd, &info))