sub new { my ( $Type, %Parameter ) = @_; my $Self = { }; bless( $Self , $Type ); $Self -> { Debug } = $Parameter{ Debug } || 0; if( $Self -> { Debug } == 1 ) { $Kernel::OM -> Get( 'Kernel::System::Low' ) -> Ausfuehrung( Priority => 'notice' , Message => "Test" ); } my $Zusaetzliches_Loader = $Kernel::OM -> Get( 'Kernel::Modules::Mist' ); return $Self; }