Help for this page

Select Code to Download


  1. or download this
    use Config::Std;
    use Readonly;
    ...
        level => ($config{'log'}{'level'} || $DEFAULT_LOG_LEVEL), 
        file  => ($config{'log'}{'file' } || $DEFAULT_LOG_FILE )
    };
    
  2. or download this
    my $EMPTY_STRING        ;
    my $DEFAULT_LOG_LEVEL   ;
    ...
        level => ($config{'log'}{'level'} || $DEFAULT_LOG_LEVEL), 
        file  => ($config{'log'}{'file' } || $DEFAULT_LOG_FILE )
    };