mirror of
https://github.com/opensim/opensim.git
synced 2026-08-03 07:26:16 +08:00
make OSSL parsing error warning more clear
This commit is contained in:
@@ -357,6 +357,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
else
|
||||
{
|
||||
string[] ids;
|
||||
bool error = false;
|
||||
if (!string.IsNullOrWhiteSpace(ownerPerm))
|
||||
{
|
||||
ids = ownerPerm.Split(new char[] {','});
|
||||
@@ -403,15 +404,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.WarnFormat("[OSSLENABLE]: error parsing line {0}", ownerPerm);
|
||||
error = true;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (error)
|
||||
m_log.WarnFormat("[OSSLENABLE]: error parsing line Allow_{0} = {1}", function, ownerPerm);
|
||||
}
|
||||
|
||||
error = false;
|
||||
if (!string.IsNullOrWhiteSpace(creatorPerm))
|
||||
{
|
||||
ids = creatorPerm.Split(new char[] {','});
|
||||
@@ -430,9 +432,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.WarnFormat("[OSSLENABLE]: error parsing line {0}", creatorPerm);
|
||||
error = true;
|
||||
}
|
||||
}
|
||||
if (error)
|
||||
m_log.WarnFormat("[OSSLENABLE]: error parsing line Creators_{0} = {1}", function, creatorPerm);
|
||||
}
|
||||
// both empty fallback as disabled
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user