I'm getting this error message in the Netscape Web server 'errors' log file:
...mid_yr_rpt_survey.cgi did not produce a valid header (name without value: got line " (perhaps you need to 'use' the module which defines that package first.)")
despite having this in the 'HinLog.pm' file:
package mid_yr_rpt_survey::HinLog;
use Log::Log4perl qw(get_logger); # don't need this, right?
use base qw(Log::Log4Perl);
and this in the 'DBI.pm' module that's trying to use 'HinLog':
package mid_yr_rpt_survey::DBI;
...
use mid_yr_rpt_survey::HinLog;