diff options
author | Justin Clarke Casey | 2008-10-15 16:35:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-15 16:35:27 +0000 |
commit | 9324c3f110d70d44ef91c18e570cffc59d067683 (patch) | |
tree | 6ce60aa08beca59e9e985868f7435ed89cabf59d /OpenSim/Region/Environment/Modules/Avatar/Currency | |
parent | * minor: oops, small textual tweak (diff) | |
download | opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.zip opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.gz opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.bz2 opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.xz |
* refactor: Move error logging from GetUserDetails up to callers, since there are some circumstances in which not finding a user is not an error
Diffstat (limited to 'OpenSim/Region/Environment/Modules/Avatar/Currency')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs index a015c63..1f57fb5 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Currency/SampleMoney/SampleMoneyModule.cs | |||
@@ -604,6 +604,13 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Currency.SampleMoney | |||
604 | string avatarname = profile.UserProfile.FirstName + " " + profile.UserProfile.SurName; | 604 | string avatarname = profile.UserProfile.FirstName + " " + profile.UserProfile.SurName; |
605 | return avatarname; | 605 | return avatarname; |
606 | } | 606 | } |
607 | else | ||
608 | { | ||
609 | m_log.ErrorFormat( | ||
610 | "[MONEY]: Could not resolve user {0}", | ||
611 | agentID); | ||
612 | } | ||
613 | |||
607 | return String.Empty; | 614 | return String.Empty; |
608 | } | 615 | } |
609 | 616 | ||