Skip to content

Commit 092ebe1

Browse files
authored
Merge pull request #72591 from tbkka/tbkka-rdar124996590
Disable tracing in xpcproxy
2 parents f660c2b + b8cb005 commit 092ebe1

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)