The debugging tag has no wiki summary.
1
vote
2answers
47 views
Calling too many getters
I have the following VisualForce Page:
<apex:page controller="Checkbox_Class" Tabstyle="Asset">
<apex:form >
<apex:pageBlock Title="Assets with CheckBoxes">
...
3
votes
1answer
84 views
Debug log not giving a clue why page fails
I am trying to debug a visual force page that fails with a generic "Error: Error occurred while loading a Visualforce page."
I have set the debug log to the finest settings possible, but all it gives ...
5
votes
2answers
66 views
How to check debug logs for installed App?
how to check debug logs for installed app? Is there any way to check those ?
What are the best ways/practice to follow when developing app, so that we can get some logs in case something goes wrong on ...
2
votes
1answer
31 views
access Monitored Users
I got a simple question, for custom logging I need to lookup some ApexLogs.
Is there a way to access the Monitored Users for debug logging?
I like to create or reset them programmatically.
10
votes
1answer
199 views
Detecting System Mode in Debug Log
I'm attempting to ascertain if a block of code is running in System mode via the Debug Logs
I have log entries which appear as such:
21:26:05.741 (2741491000)|SYSTEM_MODE_ENTER|true
..
..
...
0
votes
1answer
125 views
debug statements not showing on the debug log
I have custom debug statements on the controller now which is not showing up on the debug log. I see the method getting executed and exited but i could not see anything on the debug log.
Edited to ...
2
votes
2answers
96 views
Debugging visual workflow
I've got a "unhandled fault" in one of my flows. I tried using the debug logs, but they're very small, nearly empty.
What's a good way to figure out what is causing the issue?
5
votes
3answers
451 views
How to export debug logs?
I spend my days waiting on the Force.com Console and it makes me crazy, I have a pretty nice machine and it still chokes on the details sometimes.
Anyways, I saw Loggly had given a presentation at DF ...
5
votes
1answer
102 views
How can I capture Heap Dumps for other users?
Some of my users are experiencing a strange behavior that I can't yet reproduce in a Sandbox, so I'm trying to monitor the bug more closely in our production database.
Since I'm in a production ...
5
votes
2answers
96 views
Inconsistent logging output!
I am trying to log some values for general testing and I am getting some really strange behaviour. Some of the logs are just not printing. This is what is happening:
I am pressing a button that runs ...
0
votes
1answer
61 views
Need to get the ids of Multiple items
<apex:pageblock >
<Apex:pageblockButtons >
<apex:commandButton value="Process" action="{!savetemp}" rerender="thebtn" immediate="true">
...
0
votes
1answer
74 views
Debugging SF API
I'm calling the SF SOAP API from 3rd party system
e.g. services/data/v25.0/sobjects/Account/
I'm facing a problem which I would like to debug.
How can I debug the API and see what am I being sent?
7
votes
1answer
75 views
Logging all interactions through Force.com Sites
We have a Force.com Site set up that a 3rd party service hits every so often via a webhook. We've noticed that there is an error every so often, but the webhook fires frequently enough that it is hard ...
1
vote
1answer
42 views
Using ForceIDE, how can I view the system.debug called from a class or trigger? ( I can see the ones from my test Class)
I am using the Eclipse Force.com IDE and have created a test class as well as a trigger. I put a system.debug in both but the Apex Test runner only displays the debug of the test class and not the one ...
5
votes
2answers
107 views
System.UnexpectedException: User defined type found in unsupported code path
I have a complex codebase containing numerous custom classes, subclasses, inner classes, and enums. (I specifically mention this, as I have a hunch the enums are the cause, but I can't replicate in a ...