Help for this page

Select Code to Download


  1. or download this
     use Log::Report textdomain => 'my-domain';
     report trace => "{count} files", count => 10;
    
  2. or download this
     use Log::Report textdomain => 'my-domain';
     report trace => __x("{count} files", count => 10);
    
  3. or download this
     use Log::Report textdomain => 'my-domain'
                   , directory  => '/usr/share/locale';
    
  4. or download this
      use Log::Report
        destinations =>
    ...
         , 'ERRORS-' => 'die'
         , 'TRACE,INFO' => 'ignore'
         ];