* Removed plenty more untagged console messages. Everything now has shiny groups. :)

This commit is contained in:
Adam Frisby
2007-10-22 22:37:39 +00:00
parent 3e5fcf90aa
commit 3143768468
8 changed files with 21 additions and 15 deletions

View File

@@ -77,7 +77,7 @@ namespace OpenSim.Region.Capabilities
/// </summary>
public void RegisterHandlers()
{
Console.WriteLine("registering CAPS handlers");
OpenSim.Framework.Console.MainLog.Instance.Verbose("CAPS","Registering CAPS handlers");
string capsBase = "/CAPS/" + m_capsObjectPath;
try
{

View File

@@ -199,8 +199,7 @@ namespace OpenSim.Framework.UserManagement
public virtual bool AuthenticateUser(UserProfileData profile, string password)
{
MainLog.Instance.Verbose(
"Authenticating " + profile.username + " " + profile.surname);
MainLog.Instance.Verbose("LOGIN","Authenticating " + profile.username + " " + profile.surname);
password = password.Remove(0, 3); //remove $1$

View File

@@ -207,7 +207,7 @@ namespace OpenSim.Framework.Data.SQLite
fillUserAgentRow(row, user.currentAgent);
}
}
MainLog.Instance.Verbose("Syncing user database: " + ds.Tables["users"].Rows.Count + " users stored");
MainLog.Instance.Verbose("SQLITE", "Syncing user database: " + ds.Tables["users"].Rows.Count + " users stored");
// save changes off to disk
da.Update(ds, "users");
}