Fixed logging messages
This commit is contained in:
@@ -633,7 +633,7 @@ public class QuestHelper
|
||||
if (unlockTime > _timeUtil.GetTimeStamp())
|
||||
{
|
||||
_logger.Debug(
|
||||
$"Quest ${ quest.QuestName} is locked for another ${unlockTime - _timeUtil.GetTimeStamp()} seconds");
|
||||
$"Quest { quest.QuestName} is locked for another: {unlockTime - _timeUtil.GetTimeStamp()} seconds");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,7 +123,7 @@ public class SaveServer
|
||||
|
||||
if (profiles == null || profiles.Count == 0)
|
||||
{
|
||||
throw new Exception($"no profiles found in saveServer with id: ${sessionId}");
|
||||
throw new Exception($"no profiles found in saveServer with id: {sessionId}");
|
||||
}
|
||||
|
||||
if (!profiles.TryGetValue(sessionId, out var sptProfile))
|
||||
|
||||
@@ -114,7 +114,7 @@ public class TraderPurchasePersisterService
|
||||
if (resetTimeForItem < _timeUtil.GetTimeStamp())
|
||||
{
|
||||
// Item was purchased far enough in past a trader refresh would have occured, remove purchase record from profile
|
||||
_logger.Debug($"Removed trader: ${ traderId} purchase: ${ purchaseKvP} from profile: ${ profile.ProfileInfo.ProfileId}");
|
||||
_logger.Debug($"Removed trader: { traderId} purchase: { purchaseKvP} from profile: { profile.ProfileInfo.ProfileId}");
|
||||
|
||||
profile.TraderPurchases.Remove(purchaseKvP.Key);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user