mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
Adjust more logging [skip ci]
This commit is contained in:
parent
463aeea5a3
commit
052583d170
@ -710,20 +710,20 @@ struct UsertoWorldRequest_Struct {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct UsertoWorldResponseLegacy_Struct {
|
struct UsertoWorldResponseLegacy_Struct {
|
||||||
uint32 lsaccountid;
|
uint32 lsaccountid;
|
||||||
uint32 worldid;
|
uint32 worldid;
|
||||||
int8 response; // -3) World Full, -2) Banned, -1) Suspended, 0) Denied, 1) Allowed
|
int8 response; // -3) World Full, -2) Banned, -1) Suspended, 0) Denied, 1) Allowed
|
||||||
uint32 FromID;
|
uint32 FromID;
|
||||||
uint32 ToID;
|
uint32 ToID;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct UsertoWorldResponse_Struct {
|
struct UsertoWorldResponse_Struct {
|
||||||
uint32 lsaccountid;
|
uint32 lsaccountid;
|
||||||
uint32 worldid;
|
uint32 worldid;
|
||||||
int8 response; // -3) World Full, -2) Banned, -1) Suspended, 0) Denied, 1) Allowed
|
int8 response; // -3) World Full, -2) Banned, -1) Suspended, 0) Denied, 1) Allowed
|
||||||
uint32 FromID;
|
uint32 FromID;
|
||||||
uint32 ToID;
|
uint32 ToID;
|
||||||
char login[64];
|
char login[64];
|
||||||
};
|
};
|
||||||
|
|
||||||
// generic struct to be used for alot of simple zone->world questions
|
// generic struct to be used for alot of simple zone->world questions
|
||||||
|
|||||||
@ -69,13 +69,14 @@ void LoginServer::ProcessUsertoWorldReqLeg(uint16_t opcode, EQ::Net::Packet &p)
|
|||||||
int16 status = database.CheckStatus(id);
|
int16 status = database.CheckStatus(id);
|
||||||
|
|
||||||
LogDebug(
|
LogDebug(
|
||||||
"[ProcessUsertoWorldReqLeg] id [{}] status [{}] account_id [{}] world_id [{}] from_id [{}] to_id [{}]",
|
"[ProcessUsertoWorldReqLeg] id [{}] status [{}] account_id [{}] world_id [{}] from_id [{}] to_id [{}] ip [{}]",
|
||||||
id,
|
id,
|
||||||
status,
|
status,
|
||||||
utwr->lsaccountid,
|
utwr->lsaccountid,
|
||||||
utwr->worldid,
|
utwr->worldid,
|
||||||
utwr->FromID,
|
utwr->FromID,
|
||||||
utwr->ToID
|
utwr->ToID,
|
||||||
|
utwr->IPAddr
|
||||||
);
|
);
|
||||||
|
|
||||||
ServerPacket outpack;
|
ServerPacket outpack;
|
||||||
@ -145,13 +146,14 @@ void LoginServer::ProcessUsertoWorldReq(uint16_t opcode, EQ::Net::Packet &p)
|
|||||||
int16 status = database.CheckStatus(id);
|
int16 status = database.CheckStatus(id);
|
||||||
|
|
||||||
LogDebug(
|
LogDebug(
|
||||||
"[ProcessUsertoWorldReq] id [{}] status [{}] account_id [{}] world_id [{}] from_id [{}] to_id [{}]",
|
"[ProcessUsertoWorldReq] id [{}] status [{}] account_id [{}] world_id [{}] from_id [{}] to_id [{}] ip [{}]",
|
||||||
id,
|
id,
|
||||||
status,
|
status,
|
||||||
utwr->lsaccountid,
|
utwr->lsaccountid,
|
||||||
utwr->worldid,
|
utwr->worldid,
|
||||||
utwr->FromID,
|
utwr->FromID,
|
||||||
utwr->ToID
|
utwr->ToID,
|
||||||
|
utwr->IPAddr
|
||||||
);
|
);
|
||||||
|
|
||||||
ServerPacket outpack;
|
ServerPacket outpack;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user