Skip to content

Commit 67055e1

Browse files
authored
Merge pull request #72593 from tbkka/tbkka-6.0-rdar124996590
[6.0] 🍒 Disable tracing in xpcproxy
2 parents ce9feb5 + 6adae95 commit 67055e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/swift/Runtime/TracingCommon.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ static inline bool shouldEnableTracing() {
3333
return false;
3434
if (__progname && (strcmp(__progname, "logd") == 0 ||
3535
strcmp(__progname, "diagnosticd") == 0 ||
36-
strcmp(__progname, "notifyd") == 0))
36+
strcmp(__progname, "notifyd") == 0) ||
37+
strcmp(__progname, "xpcproxy") == 0)
3738
return false;
3839
return true;
3940
}

0 commit comments

Comments
 (0)