X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=perl%2Fcluster.pl;h=0b4e7428fcee2c421d12b348962373e7ba506900;hb=b00e85c55392ddf0593b681d7187e4c4e158568e;hp=b89e5805696fc82787193234f4266897beed30af;hpb=cb5f21f8f960a003b80e7415f945d718f4b7d43e;p=spider.git diff --git a/perl/cluster.pl b/perl/cluster.pl index b89e5805..0b4e7428 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -395,7 +395,8 @@ dbg("DXSpider Version $version, build $build started"); # load Prefixes dbg("loading prefixes ..."); -Prefix::load(); +my $r = Prefix::load(); +confess $r if $r; dbg(USDB::init()); # load band data @@ -455,23 +456,29 @@ unless ($is_win) { } # start dupe system +dbg("Starting Dupe system"); DXDupe::init(); # read in system messages +dbg("Read in Messages"); DXM->init(); # read in command aliases +dbg("Read in Aliases"); CmdAlias->init(); # initialise the Geomagnetic data engine +dbg("Start WWV"); Geomag->init(); +dbg("Start WCY"); WCY->init(); # initial the Spot stuff +dbg("Starting DX Spot system"); Spot->init(); # initialise the protocol engine -dbg("reading in duplicate spot and WWV info ..."); +dbg("Start Protocol Engines ..."); DXProt->init(); QXProt->init();