Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 0bf192cd

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID 0bf192cd0511eee455a4f883c78234613d0b8407
  • Vorgänger 7cfa1f2a
  • Nachfolger 9c1048cc

Data::Dumper immer via 'use' und nicht 'require' einbinden

Ist schließlich ein Core-Modul.

Unterschiede anzeigen:

SL/LXDebug.pm
16 16
use constant FILE_TARGET   => 0;
17 17
use constant STDERR_TARGET => 1;
18 18

  
19
use Data::Dumper;
19 20
use POSIX qw(strftime getppid);
20 21
use Time::HiRes qw(gettimeofday tv_interval);
21 22
use YAML;
22 23

  
23 24
use strict;
24 25

  
25
my ($data_dumper_available, $text_diff_available);
26
my ($text_diff_available);
26 27

  
27
our $global_level;
28
our $watch_form;
28
our $global_level = NONE();
29
our $watch_form   = 0;
29 30
our $file_name;
30 31

  
31
BEGIN {
32
  eval("use Data::Dumper");
33
  $data_dumper_available = $@ ? 0 : 1;
34

  
35
  $global_level      = NONE;
36
  $watch_form        = 0;
37
}
38

  
39 32
sub new {
40 33
  my $type = shift;
41 34
  my $self = {};
......
159 152
sub dump {
160 153
  my ($self, $level, $name, $variable, %options) = @_;
161 154

  
162
  if ($data_dumper_available) {
163 155
    my $password;
164 156
    if ($variable && ('Form' eq ref $variable) && defined $variable->{password}) {
165 157
      $password             = $variable->{password};
......
183 175
    }
184 176

  
185 177
    return $output;
186

  
187
  } else {
188
    $self->message($level,
189
                   "dumping ${name}: Data::Dumper not available; "
190
                     . "variable cannot be dumped");
191

  
192
    return undef;
193
  }
194 178
}
195 179

  
196 180
sub dump_yaml {

Auch abrufbar als: Unified diff