@@ -5402,7 +5402,8 @@ void Baseapp::reqAccountBindEmail(Network::Channel* pChannel, ENTITY_ID entityID
5402
5402
PyObject* py__ACCOUNT_NAME__ = PyObject_GetAttrString (pEntity, " __ACCOUNT_NAME__" );
5403
5403
if (py__ACCOUNT_NAME__ == NULL )
5404
5404
{
5405
- DEBUG_MSG (fmt::format (" Baseapp::reqAccountBindEmail: entity({}) __ACCOUNT_NAME__ is NULL\n " , entityID));
5405
+ DEBUG_MSG (fmt::format (" Baseapp::reqAccountBindEmail: {}({}) not found __ACCOUNT_NAME__!\n " , pEntity->scriptName (), entityID));
5406
+ PyErr_Clear ();
5406
5407
return ;
5407
5408
}
5408
5409
@@ -5417,7 +5418,7 @@ void Baseapp::reqAccountBindEmail(Network::Channel* pChannel, ENTITY_ID entityID
5417
5418
5418
5419
if (accountName.size () == 0 )
5419
5420
{
5420
- DEBUG_MSG (fmt::format (" Baseapp::reqAccountBindEmail: entity ({}) __ACCOUNT_NAME__ is NULL\n " , entityID));
5421
+ DEBUG_MSG (fmt::format (" Baseapp::reqAccountBindEmail: {} ({}) __ACCOUNT_NAME__ is NULL! \n " , pEntity-> scriptName () , entityID));
5421
5422
return ;
5422
5423
}
5423
5424
@@ -5547,7 +5548,8 @@ void Baseapp::reqAccountNewPassword(Network::Channel* pChannel, ENTITY_ID entity
5547
5548
PyObject* py__ACCOUNT_NAME__ = PyObject_GetAttrString (pEntity, " __ACCOUNT_NAME__" );
5548
5549
if (py__ACCOUNT_NAME__ == NULL )
5549
5550
{
5550
- DEBUG_MSG (fmt::format (" Baseapp::reqAccountNewPassword: entity({}) __ACCOUNT_NAME__ is NULL\n " , entityID));
5551
+ DEBUG_MSG (fmt::format (" Baseapp::reqAccountNewPassword: {}({}) not found __ACCOUNT_NAME__!\n " , pEntity->scriptName (), entityID));
5552
+ PyErr_Clear ();
5551
5553
return ;
5552
5554
}
5553
5555
@@ -5562,7 +5564,7 @@ void Baseapp::reqAccountNewPassword(Network::Channel* pChannel, ENTITY_ID entity
5562
5564
5563
5565
if (accountName.size () == 0 )
5564
5566
{
5565
- DEBUG_MSG (fmt::format (" Baseapp::reqAccountNewPassword: entity ({}) __ACCOUNT_NAME__ is NULL\n " , entityID));
5567
+ DEBUG_MSG (fmt::format (" Baseapp::reqAccountNewPassword: {} ({}) __ACCOUNT_NAME__ is NULL! \n " , pEntity-> scriptName () , entityID));
5566
5568
return ;
5567
5569
}
5568
5570
0 commit comments