summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2013-03-27 13:18:52 -0400
committerOz Linden <oz@lindenlab.com>2013-03-27 13:18:52 -0400
commite68ab0a563061d3d65a3f552a1f5856071bd230e (patch)
tree514ea4f86e7730d46b469c52f85d58bdd9ff8f41
parent8154621527171267af52a9534e541af1d6c07836 (diff)
add info logging of system id
-rw-r--r--indra/newview/llhasheduniqueid.cpp3
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;
}