Skip to content

Commit e9ec161

Browse files
committed
Change the LLVM signpost category
Currently, the LLVM/LLDB timers are visible in Instruments for all apps. The developer-visible "PointsOfInterest" category is reserved for runtime issues and developer-authored "important" logging. These logs are visible to developer almost always in Instruments The LLVM/LLDB timers do not belong there. Having these present in the system is noisy and confusing to developers. This patch moves them under a new "toolchain" category. rdar://91266582 Differential revision: https://reviews.llvm.org/D123149
1 parent 5830afa commit e9ec161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/Signposts.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ using namespace llvm;
2525
namespace {
2626
os_log_t *LogCreator() {
2727
os_log_t *X = new os_log_t;
28-
*X = os_log_create("org.llvm.signposts", OS_LOG_CATEGORY_POINTS_OF_INTEREST);
28+
*X = os_log_create("org.llvm.signposts", "toolchain");
2929
return X;
3030
}
3131
struct LogDeleter {

0 commit comments

Comments
 (0)