diff options
author | Oz Linden <oz@lindenlab.com> | 2013-03-27 13:18:52 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-03-27 13:18:52 -0400 |
commit | e68ab0a563061d3d65a3f552a1f5856071bd230e (patch) | |
tree | 514ea4f86e7730d46b469c52f85d58bdd9ff8f41 /indra/newview/llhasheduniqueid.cpp | |
parent | 8154621527171267af52a9534e541af1d6c07836 (diff) |
add info logging of system id
Diffstat (limited to 'indra/newview/llhasheduniqueid.cpp')
-rw-r--r-- | indra/newview/llhasheduniqueid.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llhasheduniqueid.cpp b/indra/newview/llhasheduniqueid.cpp index 5db5d22332..03192d3e61 100644 --- a/indra/newview/llhasheduniqueid.cpp +++ b/indra/newview/llhasheduniqueid.cpp @@ -42,12 +42,13 @@ bool llHashedUniqueID(unsigned char id[MD5HEX_STR_SIZE]) hashed_unique_id.update(unique_id, MAC_ADDRESS_BYTES); hashed_unique_id.finalize(); hashed_unique_id.hex_digest((char*)id); + LL_INFOS_ONCE("AppInit") << "System ID " << id << LL_ENDL; } else { idIsUnique = false; memcpy(id,"00000000000000000000000000000000", MD5HEX_STR_SIZE); - llwarns << "Failed to get an id; cannot uniquely identify this machine." << llendl; + LL_WARNS_ONCE("AppInit") << "Failed to get an id; cannot uniquely identify this machine." << LL_ENDL; } return idIsUnique; } |