diff options
author | Merov Linden <merov@lindenlab.com> | 2010-12-22 22:09:42 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2010-12-22 22:09:42 -0800 |
commit | f8325ac588641d1f65a3c452b775a42efbe84069 (patch) | |
tree | 65f3f358cf3d22765ea5d2288cac6b192cf33a3d /indra/newview/llstartup.cpp | |
parent | 36207fcf1a16c66a5b831af31e524fc44060c2c8 (diff) |
STORM-805 : add some printout to the log so we can trace the answer map-server-url at startup
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index cc2cf0d66f..611f9de2e6 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3097,12 +3097,14 @@ bool process_login_success_response() { // We got an answer from the grid -> use that for map for the current session gSavedSettings.setString("CurrentMapServerURL", map_server_url); + LL_INFOS("LLStartup") << "map-server-url : we got an answer from the grid : " << map_server_url << LL_ENDL; } else { // No answer from the grid -> use the default setting for current session map_server_url = gSavedSettings.getString("MapServerURL"); gSavedSettings.setString("CurrentMapServerURL", map_server_url); + LL_INFOS("LLStartup") << "map-server-url : no map-server-url answer, we use the default setting for the map : " << map_server_url << LL_ENDL; } // Default male and female avatars allowing the user to choose their avatar on first login. |