From: <buc...@us...> - 2011-04-04 10:45:12
|
Revision: 225 http://devmon.svn.sourceforge.net/devmon/?rev=225&view=rev Author: buchanmilne Date: 2011-04-04 10:45:05 +0000 (Mon, 04 Apr 2011) Log Message: ----------- Reduce verbosity of checks on NET tag Modified Paths: -------------- trunk/modules/dm_config.pm Modified: trunk/modules/dm_config.pm =================================================================== --- trunk/modules/dm_config.pm 2011-04-04 10:42:20 UTC (rev 224) +++ trunk/modules/dm_config.pm 2011-04-04 10:45:05 UTC (rev 225) @@ -1313,10 +1313,10 @@ my ($ip, $host, $bbopts) = ($1, $2, $3); # Skip if the NET tag does not match this site - do_log("Checking if $bbopts matches NET:" . $g{'bblocation'} . ".",2); + do_log("Checking if $bbopts matches NET:" . $g{'bblocation'} . ".",4) if $g{'debug'}; if ($g{'bblocation'} ne '') { if ($bbopts !~ / NET:$g{'bblocation'}/) { - do_log("The NET for $host is not $g{'bblocation'}. Skipping.",1); + do_log("The NET for $host is not $g{'bblocation'}. Skipping.",3); next; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |