1IPC::Run3::ProfLogger(3U)ser Contributed Perl DocumentatiIoPnC::Run3::ProfLogger(3)
2
3
4
6 IPC::Run3::ProfLogger - write profiling data to a log file
7
9 use IPC::Run3::ProfLogger;
10
11 my $logger = IPC::Run3::ProfLogger->new; ## write to "run3.out"
12 my $logger = IPC::Run3::ProfLogger->new( Destination => $fn );
13
14 $logger->app_call( \@cmd, $time );
15
16 $logger->run_exit( \@cmd1, @times1 );
17 $logger->run_exit( \@cmd1, @times1 );
18
19 $logger->app_exit( $time );
20
22 Used by IPC::Run3 to write a profiling log file. Does not generate
23 reports or maintain statistics; its meant to have minimal overhead.
24
25 Its API is compatible with a tiny subset of the other IPC::Run profilā
26 ing classes.
27
29 "IPC::Run3::ProfLogger->new( ... )"
30
31 "$logger->run_exit( ... )"
32
33 "$logger->app_exit( $arg )"
34
35 "$logger->app_call( $t, @args)"
36
39 Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved
40
42 You may use this module under the terms of the BSD, Artistic, or GPL
43 licenses, any version.
44
46 Barrie Slaymaker <barries@slaysys.com>
47
48
49
50perl v5.8.8 2007-10-08 IPC::Run3::ProfLogger(3)