Skip to content

Commit

Permalink
[FEATURE] Hidden the message about not following the child process
Browse files Browse the repository at this point in the history
  • Loading branch information
hasherezade committed Dec 29, 2024
1 parent 9b2a559 commit 6ea138a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions TinyTracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,9 @@ static void OnCtxChange(THREADID threadIndex,
BOOL FollowChild(CHILD_PROCESS childProcess, VOID * userData)
{
if (!m_Settings.followChildprocesses) {
#ifdef _DEBUG
std::cerr << "Following child process is disabled\n";
#endif
return FALSE;
}
OS_PROCESS_ID childPid = CHILD_PROCESS_GetId(childProcess);
Expand Down

0 comments on commit 6ea138a

Please sign in to comment.