diff options
author | OpenSim Master | 2010-01-18 13:47:41 -0800 |
---|---|---|
committer | Melanie | 2010-02-06 01:12:45 +0000 |
commit | 6392cfcd61a156bda403ee233c322650940df6f7 (patch) | |
tree | 13c0f0d6971d2b05ae7a97c459d4427cea412e5a | |
parent | * Fixed the Cable Beach inventory server to save the CreatorID as well as pro... (diff) | |
download | opensim-SC_OLD-6392cfcd61a156bda403ee233c322650940df6f7.zip opensim-SC_OLD-6392cfcd61a156bda403ee233c322650940df6f7.tar.gz opensim-SC_OLD-6392cfcd61a156bda403ee233c322650940df6f7.tar.bz2 opensim-SC_OLD-6392cfcd61a156bda403ee233c322650940df6f7.tar.xz |
Fixing an incorrect logging message in insertUserRow
-rw-r--r-- | OpenSim/Data/MySQL/MySQLManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLManager.cs b/OpenSim/Data/MySQL/MySQLManager.cs index a6cce57..243394e 100644 --- a/OpenSim/Data/MySQL/MySQLManager.cs +++ b/OpenSim/Data/MySQL/MySQLManager.cs | |||
@@ -778,7 +778,7 @@ namespace OpenSim.Data.MySQL | |||
778 | string aboutText, string firstText, | 778 | string aboutText, string firstText, |
779 | UUID profileImage, UUID firstImage, UUID webLoginKey, int userFlags, int godLevel, string customType, UUID partner) | 779 | UUID profileImage, UUID firstImage, UUID webLoginKey, int userFlags, int godLevel, string customType, UUID partner) |
780 | { | 780 | { |
781 | m_log.Debug("[MySQLManager]: Fetching profile for " + uuid.ToString()); | 781 | m_log.Debug("[MySQLManager]: Creating profile for \"" + username + " " + lastname + "\" (" + uuid + ")"); |
782 | string sql = | 782 | string sql = |
783 | "INSERT INTO users (`UUID`, `username`, `lastname`, `email`, `passwordHash`, `passwordSalt`, `homeRegion`, `homeRegionID`, "; | 783 | "INSERT INTO users (`UUID`, `username`, `lastname`, `email`, `passwordHash`, `passwordSalt`, `homeRegion`, `homeRegionID`, "; |
784 | sql += | 784 | sql += |