If a non-globbed included file from config cannot be found then warn the user

0.7.1-dev
Justin Clark-Casey (justincc) 2011-01-28 22:46:29 +00:00
parent 810f4b9835
commit 1fcb919798
1 changed files with 13 additions and 3 deletions

View File

@ -180,6 +180,7 @@ namespace OpenSim
{
if (ReadConfig(sources[i]))
iniFileExists = true;
AddIncludes(sources);
}
@ -235,6 +236,14 @@ namespace OpenSim
string path = Path.Combine(basepath, chunkWithoutWildcards);
path = Path.GetFullPath(path) + chunkWithWildcards;
string[] paths = Util.Glob(path);
// If the include path contains no wildcards, then warn the user that it wasn't found.
if (wildcardIndex == -1 && paths.Length == 0)
{
m_log.WarnFormat("[CONFIG]: Could not find include file {0}", path);
}
else
{
foreach (string p in paths)
{
if (!sources.Contains(p))
@ -245,6 +254,7 @@ namespace OpenSim
}
}
}
}
/// <summary>
/// Check if we can convert the string to a URI
/// </summary>