diff options
author | Adam Frisby | 2007-10-22 22:37:39 +0000 |
---|---|---|
committer | Adam Frisby | 2007-10-22 22:37:39 +0000 |
commit | 3143768468e7fc5a6443c2cde398d8b9fade76de (patch) | |
tree | b0b394fab9f1fa2cb6c745522469b72f09815d02 /OpenSim/Framework | |
parent | * Table creation now checks if the table already exists before building it. (diff) | |
download | opensim-SC_OLD-3143768468e7fc5a6443c2cde398d8b9fade76de.zip opensim-SC_OLD-3143768468e7fc5a6443c2cde398d8b9fade76de.tar.gz opensim-SC_OLD-3143768468e7fc5a6443c2cde398d8b9fade76de.tar.bz2 opensim-SC_OLD-3143768468e7fc5a6443c2cde398d8b9fade76de.tar.xz |
* Removed plenty more untagged console messages. Everything now has shiny groups. :)
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/Caps.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 3 | ||||
-rw-r--r-- | OpenSim/Framework/Data.SQLite/SQLiteUserData.cs | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index 4ed59c7..899fb61 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs | |||
@@ -77,7 +77,7 @@ namespace OpenSim.Region.Capabilities | |||
77 | /// </summary> | 77 | /// </summary> |
78 | public void RegisterHandlers() | 78 | public void RegisterHandlers() |
79 | { | 79 | { |
80 | Console.WriteLine("registering CAPS handlers"); | 80 | OpenSim.Framework.Console.MainLog.Instance.Verbose("CAPS","Registering CAPS handlers"); |
81 | string capsBase = "/CAPS/" + m_capsObjectPath; | 81 | string capsBase = "/CAPS/" + m_capsObjectPath; |
82 | try | 82 | try |
83 | { | 83 | { |
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index f4648df..77b9283 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -199,8 +199,7 @@ namespace OpenSim.Framework.UserManagement | |||
199 | public virtual bool AuthenticateUser(UserProfileData profile, string password) | 199 | public virtual bool AuthenticateUser(UserProfileData profile, string password) |
200 | { | 200 | { |
201 | 201 | ||
202 | MainLog.Instance.Verbose( | 202 | MainLog.Instance.Verbose("LOGIN","Authenticating " + profile.username + " " + profile.surname); |
203 | "Authenticating " + profile.username + " " + profile.surname); | ||
204 | 203 | ||
205 | password = password.Remove(0, 3); //remove $1$ | 204 | password = password.Remove(0, 3); //remove $1$ |
206 | 205 | ||
diff --git a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs index c7b7659..4817b09 100644 --- a/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs +++ b/OpenSim/Framework/Data.SQLite/SQLiteUserData.cs | |||
@@ -207,7 +207,7 @@ namespace OpenSim.Framework.Data.SQLite | |||
207 | fillUserAgentRow(row, user.currentAgent); | 207 | fillUserAgentRow(row, user.currentAgent); |
208 | } | 208 | } |
209 | } | 209 | } |
210 | MainLog.Instance.Verbose("Syncing user database: " + ds.Tables["users"].Rows.Count + " users stored"); | 210 | MainLog.Instance.Verbose("SQLITE", "Syncing user database: " + ds.Tables["users"].Rows.Count + " users stored"); |
211 | // save changes off to disk | 211 | // save changes off to disk |
212 | da.Update(ds, "users"); | 212 | da.Update(ds, "users"); |
213 | } | 213 | } |