From: Rafael Garcia-Suarez Date: Tue, 24 Nov 2009 09:46:21 +0000 (+0100) Subject: Slight rewording of last patch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3188b6e39f995cf3235071eb02ca85f5ab4182db;p=p5sagit%2Fp5-mst-13.2.git Slight rewording of last patch --- diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 570ff65..b98ab78 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -1248,10 +1248,14 @@ See also hash_seed() of L. =item PERL_MEM_LOG X -If your perl was compiled with -Accflags=-DPERL_MEM_LOG, setting envar -PERL_MEM_LOG=1mst writes (m)emory and (s)v debug messages with -(t)imestamps to stdout(1) instead of stderr(2). You can write to -other opened fds too, in a variety of ways; +If your perl was configured with C<-Accflags=-DPERL_MEM_LOG>, setting the +environment variable C enables logging debug messages. The +value has the form C<< [m][s][t] >>, where C is the +filedescriptor number you want to write to, and the combination of letters +specifies that you want information about (m)emory and/or (s)v, optionally +with (t)imestamps. For example C will log all +information to stdout. You can write to other opened filedescriptors too, +in a variety of ways; bash$ 3>foo3 PERL_MEM_LOG=3m perl ...