Help for this page

Select Code to Download


  1. or download this
    use constant DEBUG  => 0;                # Log levels
    use constant INFO   => 1;
    ...
    }
    
    LogMsg INFO, "Starting chooser mode...";
    
  2. or download this
    use constant FILE   => 0b0001;
    use constant STDOUT => 0b0010;
    use constant GUI    => 0b0100;
    LogMsg FILE|STDOUT, "Message";