Welcome To Snipplr
Everyone's Recent Snippets Tagged debug
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
In certain cases, it is useful to display additional information in a journal that does not report an error, but simply helps in writing your own code. For this PHP provides the function error_log ().
This function does not provide formatting, so yo...
0
1219
posted 6 years ago by cerxx
// create a variable to toggle debugging
// to use it, just call debug(with,any,optional,parameters)
debug(x,y,z);
// it will try to guess what type of message to log, or you can specify in the first parameter
debug("error",x,y,z);
1
1141
posted 9 years ago by brandonjp
Surprisingly often I want to print all the values of some object for debugging reasons, and if the object has a lot of different get methods (and toString is not good for this), it is a pain to write all the print commands. That's when this snippet i...
0
1075
posted 10 years ago by mcaordie
A little pile of functions I use for implementing a nice var dump alternative.
0
870
posted 12 years ago by philsown
I use this primarily for debugging purposes. This simply takes an array and creates an expandable item that prints the array out in a \<pre\> wrapping, making it easy to read. Very basic snippet.
0
1008
posted 12 years ago by ringo380
In javascript there is no function for printing variables like you have PHP, I use print_r and var_dump a lot in PHP for dumping variables
so I wanted to create a simular function in javascript.
0
1061
posted 12 years ago by satie83
//////////////////////////////////////////////////////////
function debug($ch,$force=false) {
global $debugphp,$iphost,$ch_debug;
$ip=getenv('REMOTE_ADDR');
if ((($debugphp==true)||($force==true))&&(in_array($ip, $iphost))) {...
0
858
posted 13 years ago by kspal
Print Debug Information (Exibe as informações de depuração)
0
884
posted 13 years ago by cdohost
a more useful way of printing php arrays in a nice readable format and able to decode serialized and json_encoded strings.
0
941
posted 13 years ago by liamchapman
Get a list of providers for DTrace that OSX supports. (DTrace is a probe/profiling tool created by Sun that came with Mac OS X starting with Leopard.)
0
966
posted 13 years ago by zingo
See: http://docs.python.org/library/smtpd.html
You might use other port instead 25.
0
923
posted 13 years ago by wnasich
ReflectionToStringBuilder wraps a class and outputs a string describing its attributes, more or less similar to var_dump in PHP
1
1386
posted 13 years ago by miceno