[SalesForce] ENTERING_MANAGED_PKG logging level

I want to debug a test method, but the debug log is mostly taken up by "ENTERING_MANAGED_PKG" lines.

In the Setting Debug Log Filters page, it suggests that this line is only shown if "Apex Code" is set to INFO or above.

I have the following in my log:

27.0 APEX_CODE,ERROR;APEX_PROFILING,ERROR;CALLOUT,ERROR;DB,ERROR;SYSTEM,ERROR;VALIDATION,ERROR;VISUALFORCE,ERROR;WORKFLOW,ERROR

However, the ENTERING_MANAGED_PKG lines are still showing. What am I missing here?

Best Answer

I can confirm that this indeed happens inside namespaced packaging orgs (= the developer org of a managed package).

I have the same problem with two of our managed ISV packages. Even setting the Debug Logging Level to ERROR everywhere (assumption 1: Log reaches max size otherwise and skips my debugs) or setting it to FINEST (assumption 2: I should see more then) did not change anything.

This happened imediatelly after the Summer '13 Release.

I opened a case with Premier Support but I did not a response for weeks and regularly escalate it.

I thought I post this as an answer so I can use comments to keep you updated.

UPDATE 1: This only happends in Testclasses where I have many (20) test methods. Maybe thats the reason why the logs fills up with MUST SHOW stuff.

Related Topic