use
5.008;
our
$VERSION
=
'1.02'
;
BEGIN {
if
(
$ENV
{PADRE_DEBUG} ) {
if
(
$ENV
{PADRE_DEBUG} eq
'1'
) {
$Padre::Logger::DEBUG
= 1;
}
else
{
eval
"\$$ENV{PADRE_DEBUG}::DEBUG = 1;"
;
}
}
}
sub
import
{
if
(
$_
[1] and
$_
[1] eq
':ALL'
) {
$Padre::Logger::DEBUG
= 1;
}
my
$pkg
= (
caller
() )[0];
eval
<<"END_PERL";
package $pkg;
use constant DEBUG => !! (
defined(\$${pkg}::DEBUG) ? \$${pkg}::DEBUG : \$Padre::Logger::DEBUG
);
BEGIN {
*TRACE = *Padre::Logger::TRACE;
TRACE('::DEBUG enabled') if DEBUG;
}
1;
END_PERL
die
(
"Failed to enable debugging for $pkg"
)
if
$@;
return
;
}
sub
TRACE {
my
$time
= Time::HiRes::
time
;
my
$caller
= (
caller
(1) )[3] ||
'main'
;
my
$logfile
= Padre::Constant::LOG_FILE;
my
$thread
=
(
$INC
{
'threads.pm'
} and threads->self->tid )
? (
'(Thread '
. threads->self->tid .
') '
)
:
''
;
foreach
(
@_
) {
print
sprintf
(
"# %.5f %s%s %s\n"
,
$time
,
$thread
,
$caller
,
string(
$_
),
);
}
if
(
$ENV
{PADRE_DEBUG_STACK} ) {
print
Carp::longmess(),
"\n"
;
print
'-'
x 50,
"\n"
;
}
return
;
}
sub
string {
my
$object
=
shift
;
my
$shared
= (
$INC
{
'threads/shared.pm'
} and threads::shared::is_shared(
$object
) ) ?
' : shared'
:
''
;
my
$string
=
ref
(
$object
)
? Devel::Dumpvar->_refstring(
$object
)
: Devel::Dumpvar->_scalar(
$object
);
return
$string
.
$shared
;
}
1;