diff options
author | OpenSim Master | 2010-01-18 13:47:41 -0800 |
---|---|---|
committer | John Hurliman | 2010-02-05 17:45:36 -0800 |
commit | 310e14cf03e5b4f78e1643b2eb3b1f104def6888 (patch) | |
tree | 9a49d9d0d5307e50b789754a22aee87c24156761 /OpenSim/Data/MySQL | |
parent | * Fixed the Cable Beach inventory server to save the CreatorID as well as pro... (diff) | |
download | opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.zip opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.gz opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.bz2 opensim-SC_OLD-310e14cf03e5b4f78e1643b2eb3b1f104def6888.tar.xz |
Fixing an incorrect logging message in insertUserRow
Diffstat (limited to 'OpenSim/Data/MySQL')
-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 += |