# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1271246424 -3600
# Node ID 15a7afea7f595412f1e4c689e7e0f387063c4ec8
# Parent  9f593650b3ce30857e62ad1e88c9b0553d19d419
hostmanager: Re-word log messages in line with config changes

diff -r 9f593650b3ce -r 15a7afea7f59 core/hostmanager.lua
--- a/core/hostmanager.lua	Wed Apr 14 12:59:46 2010 +0100
+++ b/core/hostmanager.lua	Wed Apr 14 13:00:24 2010 +0100
@@ -43,7 +43,7 @@
 	end
 	
 	if not activated_any_host then
-		log("error", "No hosts defined in the config file. This may cause unexpected behaviour as no modules will be loaded.");
+		log("error", "No active VirtualHost entries in the config file. This may cause unexpected behaviour as no modules will be loaded.");
 	end
 	
 	eventmanager.fire_event("hosts-activated", defined_hosts);
@@ -60,8 +60,8 @@
 	                     and (configmanager.get(host, "core", "disallow_s2s") ~= false))
 	              };
 	for option_name in pairs(host_config.core) do
-		if option_name:match("_ports$") then
-			log("warn", "%s: Option '%s' has no effect for virtual hosts - put it in global Host \"*\" instead", host, option_name);
+		if option_name:match("_ports$") or option_name:match("_interface$") then
+			log("warn", "%s: Option '%s' has no effect for virtual hosts - put it in the server-wide section instead", host, option_name);
 		end
 	end