Do not write the server seed to the log file

This commit is contained in:
moneromooo 2015-01-17 19:46:04 +00:00
parent 41e00ad742
commit e3eaff5fc1
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def IsPlayerBalanceAtLeast(nick,units):
def SetServerSeed(nick,game,seed):
try:
redis_hset('%s:serverseed' % game,nick,seed)
log_info('%s\'s %s serverseed set to %s' % (nick, game, seed))
log_info('%s\'s %s server seed set' % (nick, game))
except Exception,e:
log_error('Failed to set %s server seed for %s: %s' % (game, nick, str(e)))
raise