diff options
Diffstat (limited to 'indra')
| -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;  } | 
