Top "Debugging" questions

Debugging is a methodical process of finding and fixing bugs in a computer program.

error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in main.obj

I have read a lot of solutions to my problem but none helped. I tried clean, rebuild. Reinstalled visual 2010 and …

c++ debugging linker
How to enable loglevel debug on Apache2 server

My error.log contains: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase …

debugging apache2 error-logging
Print debugging info from stored procedure in MySQL

Is there a way in MySQL to print debugging messages to stdout, temptable or logfile? Something like: print in SQLServer …

mysql debugging
How do you debug React Native?

How does one debug their React code with React Native while the app is running in app simulator?

android ios react-native debugging
How can I see the entire HTTP request that's being sent by my Python application?

In my case, I'm using the requests library to call PayPal's API over HTTPS. Unfortunately, I'm getting an error from …

python debugging https python-requests
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 …

c++ c string debugging gdb
Determine the line of code that causes a segmentation fault?

How does one determine where the mistake is in the code that causes a segmentation fault? Can my compiler (gcc) …

c++ c debugging segmentation-fault
The thread has exited with code 0 (0x0) with no unhandled exception

While debugging my C# application I have noticed a large amount occurrences of the following sentence: The thread -- has …

c# .net debugging
Printing Java Collections Nicely (toString Doesn't Return Pretty Output)

I wish to print a Stack<Integer> object as nicely as the Eclipse debugger does (i.e. [1,2,3...]) but …

java debugging pretty-print
Where does System.Diagnostics.Debug.Write output appear?

The following C# program (built with csc hello.cs) prints just Hello via Console! on the console and Hello via …

c# debugging