diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-11-24 10:46:21 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-11-24 10:46:21 +0100 |
commit | 3188b6e39f995cf3235071eb02ca85f5ab4182db (patch) | |
tree | 238eac26e72ee3638976688b727896b78eb94228 /pod/perlrun.pod | |
parent | 9aa9f4999e15926df7a18fb2d5cc297f90e02e67 (diff) | |
download | perl-3188b6e39f995cf3235071eb02ca85f5ab4182db.tar.gz |
Slight rewording of last patch
Diffstat (limited to 'pod/perlrun.pod')
-rw-r--r-- | pod/perlrun.pod | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 570ff65f0d..b98ab788ac 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -1248,10 +1248,14 @@ See also hash_seed() of L<Hash::Util>. =item PERL_MEM_LOG X<PERL_MEM_LOG> -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<PERL_MEMLOG> enables logging debug messages. The +value has the form C<< <number>[m][s][t] >>, where C<number> 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<PERL_MEMLOG=1mst> 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 ... |