Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program.

learn more… | top users | synonyms (2)

1
vote
1answer
10 views

stepping through a function line by line

This user guide: http://www.haskell.org/ghc/docs/latest/html/users_guide/ghci-debugger.html advertises: Execution can be single-stepped: the evaluator will suspend execution approximately ...
0
votes
0answers
3 views

How to add all variables to “watches window” in Code::Blocks?

Preface: I know that this question is a little "not for stackoverflow" but I was readdressed to stackoverflow from other ( superuser ) when asked another question about Code::Blocks... (They said that ...
6
votes
0answers
106 views

Is LLDB really the best debugging tool for iOS? [closed]

I'm trying to debug my iOS code on device and simulator. Every time i drop to LLDB I find it extremely frustrating to do even basic commands like "print". I find lldb to be poor at resolving return ...
0
votes
0answers
7 views

SQL Server 2008 R2 Management Studio debugging: How to break at an exception?

In Visual Studio 2008 I can use CTRL+D+E to make selections to have the debugger break at the point of exception, regardless of whether there is a catch block or not. Is there a similar option in ...
0
votes
0answers
10 views

C# Microsoft HPC IScheduler - Debugging Issue

I have an issue to run a simple code (Hello World) on Microsoft HPC. The code has a breakpoint. After compiling the code in the debug mode, when I submit the executable to the node ( the one I am ...
0
votes
1answer
11 views

Ready iCloud + Core Data solution

I spent 10 days trying to debug iCloud connection for my (extra cool) app coming... Its really hard to set up when you use Core Data. Now it doesn't work on device with iCloud on. I want to ask if ...
0
votes
0answers
14 views

Android Studio Debug and DDMS

Is there way to debug and ddms enabled at the same time? For example: add breakpoint to sms receiver, send sms with ddms and stop at the breakpoint.
0
votes
1answer
35 views

Setting start page when debugging ASP.NET not working

I am using Visual Studio 2012. In my solution explorer I would normally right click on a ASPX file and click on "Set as Start Page". When running the website, it would then start with that page. ...
0
votes
0answers
17 views

Bug with chrome.storage?

I recently asked how to store an array with chrome.storage : Store an array with chrome.storage.local I my extension, I now have this function : function storeGeneratedKeyId(keyPairId){ ...
0
votes
0answers
14 views

init model from controller joomla 3.1

I try to call a model from one of my joomla controller but doesn't seems to work. class TieraerzteControllerDatatable extends JControllerLegacy { /** * display task * ...
2
votes
0answers
14 views

What does “internal” mean in windbg “!heap -a” output

I am using windbg command "!heap -a " to check the memory status, and get the following results. what does internal mean at the end of this entry "00d168f0: 03d20 . 06b48 [101] - busy (6b40) ...
0
votes
0answers
33 views

How to keep focused and paying attention to details while programming [closed]

This is not a specific programming question, though, I'm gonna ask this because I think it's very important. While coding, I always feel that very little mistakes you made while programming can make ...
2
votes
2answers
43 views

what happens between willSelectRowAtIndexPath and prepareForSegue? Need debugging advice

Somewhere in between these two calls, i get EXC_BAD_ACCESS (Code=2, address=0xa). The common explanation for bad access is accessing a released object - I've compiled with NSZombies enabled and that ...
0
votes
0answers
9 views

Old Material in Meta Open Graph Tags after Debug ran

I had a Website hosted at 000webhost. Well I ran out of bandwidth and no one let me know, so we scrambled to put it on a different host. Now when I post the site on Facebook, it does not show the ...
1
vote
6answers
97 views

Why use {} for printing out instead of the plus sign?

I am coding in Unity3D in C#, and when printing or using debug statements or console statements, I have always used something like this: Debug.Log("The sum of these two variables is :" + ...
0
votes
0answers
21 views

Android Studio debugger launches with null intent

When I try to debug my application in the brand new Android Studio, something strange happens: Instead of the intent action set in the androidManifest (android.intent.action.MAIN) it launches with a ...
0
votes
1answer
42 views

I have a for loop that refuses to stay within the defined limits. The limits have been verified (by printing) during runtime

I am inserting the snippet of code that is causing the problem. Please focus on the uncommented code, as that is the actual code. The commented out code was there to help me debug. Apologies for poor ...
0
votes
2answers
25 views

Debug GWT app locally/remotely while running on Tomcat

All of the tutorials/links/articles I have found for debugging GWT involve: Using the Google-Eclipse plugin; and Running GWT in Development Mode from inside Eclipse (with Eclipse as the web ...
0
votes
2answers
19 views

Android Debugging - Simulate unplugged phone

I have a program that works great when its plugged in. But, when its unplugged I am having a problem somewhere in the program. I don't know where in the program the problem is coming from because ...
0
votes
0answers
8 views

DEV C++: Unable to scroll up to the start of output in output window. (Output spans numerous lines)

I am trying to debug a program by setting printf() statements within function calls and loops. My code is somewhat big (by my standards, around 200 lines). I managed to remove a few bugs that way, but ...
0
votes
1answer
37 views

Passing unique_ptr to non-member functions

I am having troble figuring our how to pass around my smart pointer. I call the function isIdentity on my matrix object h: void test(const size_t dim) { cout << "identity gen: " << ...
1
vote
1answer
37 views

How to override general malloc so I get line number printed in memory leak printout

I have written some utility code to detect memory leaks when a program closes. detect_leaks.hpp and cpp contain the function which sets things up and in a program you would just call the ...
0
votes
0answers
17 views

Enigmatic GET request from Rails app

I am seeing a strange thing, when I run the server for my Rails app. This is the log: Jatins-MacBook-Pro: silverSpoon$ rails s => Booting Thin => Rails 3.2.8 application starting in development ...
0
votes
2answers
20 views

Changing results in the debugger

I am trying to fix a bug in an iPhone app, and find myself in front of this situation. The instance variable myView is of type MYTextView, and MYTextView is a subclass of UITextView. At the debugger ...
1
vote
0answers
28 views

Java Application Debugging Using Eclipse Scrapbook

I have a Java application with several (10) packages and almost 50 classes. My task is to understand the application (with poor documentation and no test cases). The application seem to have several ...
1
vote
0answers
15 views

Understanding a recurring android logcat error

After compiling my ROM, I'm getting a constant recurring SystemUI crash notification, right after booting into the OS. I'm kinda hazy on the log generated, & not able to exactly trace the cause ...
0
votes
0answers
8 views

How to see local and auto variables values on remote debugging

sAs I wrote in the subject I can't see that values of variables in remote debug mode. The window of auto and locals are empty during debug. Any ideas why? and how can I solve it? When I'm trying to ...
0
votes
0answers
18 views

VS 2012 debug where a vector is changing

Please look at the following code: (VISUAL STUDIO 2012) void Layer::Simulate( float dt ) { ... std::vector< T >::iterator = m_children.begin(); // Point A for (int i = 0; it != ...
2
votes
1answer
17 views

How to display XDebug errors only to my IP address?

I'm in a non-ideal situation where I have to debug a website a live website running PHP5.4 on a LAMP stack. After enabling XDebug in php.ini and setting display_errors to true, I get nicely formatter ...
1
vote
0answers
37 views

Xcode - Break on exception, but no useable symbols

I need help figuring out the magical incantation necessary to get usable information in LLDB. I have some strange behavior that I'm trying to debug, and I can reliably reproduce the issue but I don't ...
0
votes
0answers
46 views

leaves of binary search tree are lost after print is called

I have a program that keeps track of students information. The gui allows the user to insert, delete, retrieve, update and print. All the aspects work but the print function. It will print once ...
-4
votes
0answers
33 views

debugging javascript, no error in console but nothing working [closed]

I am at a stage, where a simple click event doesn't fire. There are no errors visible with firefox firebug and console. But any simple alert(); command on the page is not working anymore. Seems like ...
0
votes
0answers
16 views

Visual Studio Express 2012 Web debug randomly not refreshing browser cache with changes

Been using Visual Studio Express 2012 Web for a few weeks now learning JavaScript, HTML5 and CSS for a web based application. As a .NET developer its great to have the familiarity of VS (although ...
0
votes
0answers
11 views

Debug gradle jettyRun in IntelliJ

I run Jetty from the command line with: export GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n" gradle jettyRun and see: Listening for transport dt_socket at ...
0
votes
1answer
39 views

Sending all Javascript console output into a DOM element

How does one send all console output into a DOM element so it can be viewed without having to open any developer tools? I'd like to see all output, such as JS errors, console.log() output, etc.
0
votes
0answers
20 views

need further explanation of “no symbols have been loaded” error

I have seen the posts on this site about the following error: The breakpoint will not currently be hit. No symbols have been loaded for this document. But, the problem descriptions and solutions ...
0
votes
1answer
30 views

Jquery form submission not being triggered

I have been trying to design a javascript for over a week (I'm new to JS) which geocodes a location when a search button is hit and the submits the form if successful. To make it to slightly more ...
0
votes
0answers
54 views

preg_match returns different values for the same match [closed]

This is the code: <?php echo preg_match('/\$/', '$'); If I run it many times, pressin CTRL+F5 on the browser, the output is "1", but sometimes it's "0"!!! I'm running XAMPP 1.8.1 on localhost ...
0
votes
0answers
13 views

LESS: having feedback about coding errors

Less2css.org has a very useful function that give feedback in realtime about possible mistakes in writing LESS code. When I write LESS code in my editor and then go back to browser to test my page, ...
0
votes
1answer
37 views

How to prevent debugger from stepping into Object class code in Eclipse when developing with Scala?

In my file file.scala, I have the following line: `file.scala` > shapes.foreach({ shape => ... When I start to debug it using Eclipse 3.7, scala plug-in version 2.1.0mp3, I press ...
1
vote
0answers
18 views

Failed to Attach to Script process in VS2010

I am trying to attach to w3wp.exe to debug classic asp. i am attaching to type "Script", but get the following error: Failed to attach to these type(s) of code: Script: A debugger is already ...
1
vote
1answer
50 views

Trace variable changes in Visual C++ 6.0

I've attached to process and I'm currently stepping through code inside very large class. In the line I'm interested in, there is a usage of some important pointer. I need to know where it's value ...
0
votes
1answer
28 views

Python implementing rod cutting algorithm

Im practicing for dynamic programming and im new to python as well. When I try this in the shell. def cut_rod(p, n): if n==0: return 0 q = float('-inf') for i in range(n): ...
0
votes
1answer
26 views

Extract loaded debug symbols into .pdb

I'm currently reversing a new application and encountered a strange behaviour: Browsing the running application with 'Cheat Engine' reveals the function names retrieved by the loaded symbols. An ...
2
votes
1answer
15 views

IntelliJ Idea (debugging) conditional breakpoint dependent on other breakpoints

I want to set a debug breakpoint in IntelliJ Idea that is only active, if another previous breakpoint was activated. For example i have a breakpoint B1 on line 10, and another breakpoint B2 on line ...
0
votes
1answer
18 views

Difference between native frames of !dumpstack and k

I'm a developer but I've been seconded into a support role which, because of my development experience, mostly involves analysing crash dumps using windbg. I'm pretty confident doing this now but one ...
-4
votes
0answers
19 views

Proper procedure to debug any web application in Eclipse Indigo with shortcuts [closed]

I want to know, what is the proper procedure to debug any web application in eclipse indigo with shortcuts?
1
vote
2answers
32 views

in Bash you can set -x to enable debugging, is there any way to know if that has been set or not from within the script?

When making complex bash scripts, I will often use the command: set -x to enable me to debug the script if it is not behaving. However I have some UI functions that generate a LOT of garbage in ...
0
votes
0answers
42 views
+50

Debug Lua in a Java project using LuaJava

My project has LuaJava as the script interpreter, for usage in both desktop and android via AndroLua. I want to be able to debug it, but I'm unable to arrange it. I have tried with an Eclipse plugin, ...
1
vote
1answer
16 views

CSS Debugging: floating divs in wrong places

On my page I want to move my "complete the look" to the top of the page. It's been floated to the right, but it seems like there is something in the entry-summary that blocks the "complete the look". ...

1 2 3 4 5 355