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)

255
votes
9answers
181k views

How to print debug messages in the Google Chrome Javascript Console

Does anyone know how to print debug messages in the Google Chrome Javascript Console? Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes ...
244
votes
10answers
70k views

How to debug node.js applications

How do I debug a node.js server application? Right now I'm mostly using alert debugging with print statements like this: sys.puts(sys.inspect(someVariable)); There must be a better way to debug. I ...
167
votes
10answers
223k views

How do you launch the javascript debugger in Google Chrome?

When using Google Chrome, I want to debug some javascript. How can I do that?
155
votes
16answers
112k views

HTTP testing tool, easily send POST/GET/PUT [closed]

I'm in the need of a tool to help debugging a web application. Is there some simple client tools that allow you to easily send and construct customizable POST/GET/PUT/DELETE HTTP requests?
154
votes
5answers
44k views

What IDE to use for Node.js / Javascript? [closed]

What is your preference when it comes to editing/debugging large JavaScript projects, containing number of relatively big JS files? Please list your choice, why do you like it compared to others; If ...
149
votes
4answers
71k views

What is private bytes, virtual bytes, working set?

I am using perfmon windows utility to debug memory leak in a process. Perfmon explaination: Working Set- Working Set is the current size, in bytes, of the Working Set of this process. The Working ...
143
votes
3answers
93k views

Debugging with command-line parameters in Visual Studio

I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated EXE file with the arguments I need (like this ...
134
votes
12answers
34k views

How to debug in Django, the good way?

So, I started learning to code in Python and later Django. The first times it was hard looking at tracebacks and actually figure out what I did wrong and where the syntax error was. Some time has ...
130
votes
11answers
225k views

JavaScript: How do I print a message to the error console?

How can I print a message to the error console, preferably including a variable? For example, something like: print('x=%d', x);
127
votes
28answers
39k views

How do you debug PHP scripts? [closed]

How do you debug your PHP scripts? I am aware of basic debugging such as using the Error Reporting. The breakpoint debugging in PHPEclipse is also quite useful. Any other good/better techniques out ...
126
votes
20answers
69k views

Easier way to start debugging a windows service in C#

Is there a way to easier start stepping through code except to start the service through the Windows Service Controll Management and then attach the debugger to the thread? It's kind of cumbersome and ...
126
votes
18answers
153k views

How can I connect to Android with ADB over TCP?

I am attempting to debug an application on a Motorola Droid but I am having some difficulty connecting to the device via USB. My development server is a Windows 7 64bit VM running in HyperV and so I ...
123
votes
5answers
32k views

What is the purpose of vshost.exe file?

When I create and compile a hello world application in C#, I get three files in the Debug folder apart from the main output exe (eg: HelloWorld.exe) HelloWorld.vshost.exe HelloWorld.pdb ...
120
votes
2answers
2k views

Making your .NET language step correctly in the debugger

Firstly, I apologize for the length of this question. I am the author of IronScheme. Recently I have been working hard on emitting decent debug info, so that I can use the 'native' .NET debugger. ...
115
votes
10answers
61k views

Is there a function in Python to print all the current properties and values of an object?

So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
103
votes
25answers
5k views

Why is debugging better in an IDE?

I've been a software developer for over twenty years, programming in C, Perl, SQL, Java, PHP, JavaScript, and recently Python. I've never had a problem I could not debug using some careful thought, ...
99
votes
23answers
11k views

How do you debug a regex? [closed]

Regular expressions can become quite complex. The lack of white space makes them difficult to read. I can't step though a regular expression with a debugger. So how do experts debug complex regular ...
98
votes
8answers
40k views

What is a python equivalent of PHP's var_dump()

When debugging in PHP, I frequently find it useful to simply stick a var_dump() in my code to show me what a variable is, what its value is, and the same for anything that it contains. What is a good ...
98
votes
20answers
7k views

Reference - What does this error mean in PHP?

What is this? This is a number of answers about warnings, errors and notices you might encounter while programming PHP and have no clue how to fix. This is also a Community Wiki, so everyone is ...
97
votes
25answers
37k views

C++ gdb GUI

Briefly: Does anyone know of a GUI for gdb that brings it on par or close to the feature set you get in the more recent version of Visual C++? In detail: As someone who has spent a lot of time ...
96
votes
8answers
39k views

Will #if RELEASE work like #if DEBUG does in C#?

In all the examples I've seen of the #if compiler directive, they use "DEBUG". Can I use "RELEASE" in the same way to exclude code that I don't want to run when compiled in debug mode? The code I ...
95
votes
4answers
35k views

How do I print the full value of a long string in gdb?

I want to print the full length of a C-string in GDB. By default it's being abbreviated, how do I force GDB to print the whole string?
90
votes
8answers
12k views

Debugging in Clojure?

What are best ways to Debug Clojure code, while using the repl?
88
votes
5answers
40k views

Can I set a breakpoint on 'memory access' in GDB?

I am running an application through gdb and I want to set a breakpoint for any time a specific variable is accessed / changed. Is there a good method for doing this? I would also be interested in ...
85
votes
11answers
26k views

NUnit isn't running Visual Studio 2010 code

I'm trying to load a Visual Studio 2010 beta dll into the NUnit GUI. I get a popup error. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. You ...
84
votes
4answers
3k views

Why (0-6) is -6 = False? [duplicate]

Possible Duplicate: Python “is” operator behaves unexpectedly with integers Today I tried to debug project and after few hours analysing I'd got this: >>> (0-6) is -6 ...
84
votes
32answers
72k views

The breakpoint will not currently be hit. No symbols have been loaded for this document

Ok, what i have: Visual Studio 2010 RC, W7 x64, started a new project type of Silverlight application. Hosting the Silverlight application in a ASP.NET Web Application Project. Silverlight Version ...
82
votes
3answers
27k views

How do I print the elements of a C++ vector in GDB?

I want to examine the contents of a std::vector in GDB, how do I do it? Let's say it's a std::vector<int> for the sake of simplicity.
82
votes
27answers
33k views

“The breakpoint will not currently be hit. The source code is different from the original version.” What does this mean?

I'm really hoping someone can help me out with this one. When debugging in Visual Studio, sometimes I add a breakpoint but it's hollow and VS says "The breakpoint will not currently be hit. The source ...
77
votes
14answers
68k views

A valid provisioning profile for this executable was not found for debug mode

I am getting this error while i am trying to debug my app on device. I created development provisioning profile as it is mentioned at developer portal. my development device is selected in the profile ...
76
votes
10answers
22k views

Debugging in ruby 1.9

What do you guys use for debugging in ruby 1.9? rdebug doesn't seem to be compatible.. is there anything out there?
73
votes
8answers
23k views

C/C++ source file after preprocessing

Let's say I have a source file with many preprocessor directives . Is it possible to see how it looks after the preprocessor is done with it ?
73
votes
17answers
78k views

Fixing “The breakpoint will not currently be hit. No symbols have been loaded for this document.”

C# desktop application on express edition. Worked then didn't work 5 seconds later. I tried the following. Ensure debug configuration, debug flag, and full debug info are set on all assemblies. ...
72
votes
3answers
2k views

“strlen(s1) - strlen(s2)” is never less than zero

I am currently writing a C program that requires frequent comparisons of string lengths so I wrote the following helper function: int strlonger(char *s1, char *s2) { return strlen(s1) - ...
66
votes
5answers
24k views

View array in Visual Studio debugger?

Is it possible to view an array in the Visual Studio debugger? QuickWatch only shows the first element of the array.
64
votes
4answers
32k views

How do I find the stack trace in Visual Studio?

I ask because I couldn't find the stack trace in Visual Studio, while debugging an exception that occurred.
64
votes
10answers
18k views

C# debug vs release performance

I've encountered the following paragraph: “Debug vs Release setting in the IDE when you compile your code in Visual Studio makes almost no difference to performance… the generated code is almost the ...
64
votes
12answers
52k views

Are there any HTTP/HTTPS interception tools like Fiddler for mac os X? [closed]

I would want to ask you if you know any application like fiddler but for mac os x , i need to debug some requests from google earth in mac os x. i used to do it with fiddler on windows but now i don't ...
63
votes
10answers
35k views

How do you get assembler output from C/C++ source in gcc?

How does one do this? If I want to analyze how something is getting compiled, how would I get the emitted assembly code?
63
votes
1answer
4k views

Where to learn about VS debugger 'magic names'

If you've ever used Reflector, you probably noticed that the C# compiler generates types, methods, fields, and local variables, that deserve 'special' display by the debugger. For instance, local ...
63
votes
11answers
30k views

Which version of Perl should I use on Windows?

The win32.perl.org web site provides references to several Perl distributions for MS Windows. For a long time I have been using ActivePerl from ActiveState but recently I switched to Strawberry ...
62
votes
5answers
20k views

#if DEBUG vs. Conditional(“DEBUG”)

Which is better to use, and why, on a large project: #if DEBUG public void SetPrivateValue(int value) { ... } #endif or [System.Diagnostics.Conditional("DEBUG")] public void ...
62
votes
2answers
10k views

Eclipse: Break when exception is thrown

Visual Studio has an option to break automatically into the debugger when an unhandled exception is thrown, does Eclipse have similar functionality?
61
votes
13answers
45k views

How to debug heap corruption errors?

I am debugging a (native) multi-threaded C++ application under Visual Studio 2008. On seemingly random occasions, I get a "Windows has triggered a break point..." error with a note that this ...
60
votes
2answers
25k views

In Visual Studio C++, what are the memory allocation representations?

In Visual Studio, we've all had "baadf00d", have seen seen "CC" and "CD" when inspecting variables in the debugger in C++ during run-time. From what I understand, "CC" is in DEBUG mode only to ...
59
votes
13answers
29k views

JavaScript data formatting/pretty printer

I'm trying to find a way to 'pretty print' a JavaScript data structure in a human-readable form for debugging. I have a rather big and complicated data structure being stored in JS and I need to ...
59
votes
1answer
2k views

What is the best way to test and interact with inner functions defined inside a toplevel function?

When I program in Javascript, I find it extremely convenient to be able to use the debugger to halt program execution at any point and to be able to runs commands and inspect variables from there. ...
59
votes
7answers
10k views

How does a debugger work?

I keep wondering how does a debugger work? Particulary the one that can be 'attached' to already running executable. I understand that compiler translates code to machine language, but then how does ...
58
votes
9answers
57k views

How to use strace?

A collegue told me once that the last option when everything has failed to debug on linux was to use strace. I tried to learn the science there is behind this strange tool but I am not a system admin ...
57
votes
6answers
64k views

Test iOS app on device without apple developer program or jailbreak

How can I test an iOS application on my ipod touch without registering for the apple developer program or jailbreaking my ipod? Neither is a viable option at the moment. I'd like to test on the ...

1 2 3 4 5 356