Skip to content

Commit

Permalink
Remove accidentally landed WTFLogAlways
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=269457
rdar://123005211

Unreviewed cleanup.

* Source/JavaScriptCore/runtime/JSGlobalObject.cpp:
(JSC::JSC_DEFINE_HOST_FUNCTION):

Canonical link: https://commits.webkit.org/274720@main
  • Loading branch information
anttijk committed Feb 15, 2024
1 parent 986082f commit f13b316
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Source/JavaScriptCore/runtime/JSGlobalObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,8 +539,6 @@ JSC_DEFINE_HOST_FUNCTION(signpostStart, (JSGlobalObject* globalObject, CallFrame
++activeJSGlobalObjectSignpostIntervalCount;
os_signpost_interval_begin(WTFSignpostLogHandle(), os_signpost_id_make_with_pointer(WTFSignpostLogHandle(), globalObject), "JSGlobalObject signpost", "%" PUBLIC_LOG_STRING, message.ascii().data());

WTFLogAlways("signpostStart %s", message.ascii().data());

return JSValue::encode(jsUndefined());
}

Expand All @@ -555,8 +553,6 @@ JSC_DEFINE_HOST_FUNCTION(signpostStop, (JSGlobalObject* globalObject, CallFrame*
os_signpost_interval_end(WTFSignpostLogHandle(), os_signpost_id_make_with_pointer(WTFSignpostLogHandle(), globalObject), "JSGlobalObject signpost", "%" PUBLIC_LOG_STRING, message.ascii().data());
--activeJSGlobalObjectSignpostIntervalCount;

WTFLogAlways("signpostStop %s", message.ascii().data());

return JSValue::encode(jsUndefined());
}

Expand Down

0 comments on commit f13b316

Please sign in to comment.