The printf-debugging tag has no wiki summary.
23
votes
5answers
12k views
How do I dump an object's fields to the console?
When I'm running a simple Ruby script, what's the easiest way to dump an object's fields to the console?
I'm looking for something similar to PHP's print_r() that will work with arrays as well.
19
votes
6answers
1k views
How to “debug” Haskell with printfs?
coming from the Ocaml community, I'm trying to learn a bit of Haskell. The transition goes quite well but I'm a bit confused with debugging. I used to put (lots of) "printf" in my ocaml code, to ...
16
votes
4answers
3k views
What is “p” in Ruby?
I'm sure it's a silly question to those who know...but I can't find an explanation of what it does or what it is.
CSV.open('data.csv', 'r') do |row|
p row
end
What does "p row" do?
7
votes
18answers
2k views
What is the proper name for doing debugging by adding 'print' statements
There are many ways of doing debugging, using a debugger is one, but the simple one for the humble, lazy, programmer is to just add a bunch of print statements to your code.
i.e.
def foo(x):
...
5
votes
11answers
530 views
Educational example to show that sometimes printf as debugging may hide a bug
I remember when I was in some course of C programming, a teacher once suggested that I use printf to watch the execution of a program that I was trying to debug. This program had a segmentation fault ...
3
votes
3answers
146 views
Type overloading macro
I have a bunch of printf debug helper macros and it would be pretty cool to have to not specify the type, is there anything you can do to allow something like macro overloading in c(can be gcc ...
3
votes
7answers
1k views
C Programming: seg faults, printf, and related quirks
As many young programmers do, I learned the usefulness of inserting numerous print-to-console statements of "here1," "here2," and so on at different points in code to figure out when my programs are ...
1
vote
1answer
657 views
Makefile: Setting CFLAGS for pr_debug and printk
I am trying to understand a Linux kernel module and would like to see the output of pr_debug and printk. I am using GNU Make.
I understand that to get pr_debug messages, we have to use DDEBUG .
...
0
votes
1answer
87 views
python - is there no better way to get the expression in a debug function
in c code I frequently use printf debugging macros like
#define DPRINT_INT(i) fprintf(stderr,"%s has the value %i at line %i", #i,i, __LINE__)
and then i can do things like
DPRINT_INT(height)
where ...