diff options
Diffstat (limited to 'lib/Travel/Status/DE')
-rw-r--r-- | lib/Travel/Status/DE/EFA.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/EFA.pm b/lib/Travel/Status/DE/EFA.pm index 4789ccc..0143cb6 100644 --- a/lib/Travel/Status/DE/EFA.pm +++ b/lib/Travel/Status/DE/EFA.pm @@ -104,6 +104,7 @@ sub new { useProxFootSearch => '0', useRealtime => '1', }, + developer_mode => $opt{developer_mode}, }; bless( $self, $class ); @@ -123,7 +124,9 @@ sub new { string => $self->{xml}, ); - #say $self->{tree}->toString(1); + if ( $self->{developer_mode} ) { + say $self->{tree}->toString(1); + } $self->check_for_ambiguous(); |