예제 #1
0
 public static LogBuilder Account(this LogBuilder builder, Player player)
 {
     return(builder.Account(player.Account));
 }
예제 #2
0
 public static LogBuilder Account(this LogBuilder builder, RelaySession session)
 {
     return(session.IsLoggedIn() ? builder.Account(session.GameSession.Player) : builder);
 }
예제 #3
0
 public static LogBuilder Account(this LogBuilder builder, Account account)
 {
     return(builder.Account(account.Id, account.Username, account.SecurityLevel));
 }