You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Inconsistent reporting of table "context" throughout CFE_TBL_Register (and likely others).
"CFE_TBL:Register-Attempt to register existing table ('%s') with different size(%d!=%d)\n",
TblName, (int)Size, (int)RegRecPtr->Size);
Describe the solution you'd like
Just use TblName, it's assembled right at the start. Consistent syslog format (see also #1325) of "function: TblName - message" or similar.
Describe alternatives you've considered
None
Additional context
Code review
Requester Info
Jacob Hageman - NASA/GSFC
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Inconsistent reporting of table "context" throughout
CFE_TBL_Register
(and likely others).Just 'Name' (no app) example:
cFE/modules/tbl/fsw/src/cfe_tbl_api.c
Line 103 in 82c1bd4
No table context at all:
cFE/modules/tbl/fsw/src/cfe_tbl_api.c
Lines 263 to 265 in 82c1bd4
Re-assembled name:
cFE/modules/tbl/fsw/src/cfe_tbl_api.c
Lines 373 to 375 in 82c1bd4
Actual
TblName
use:cFE/modules/tbl/fsw/src/cfe_tbl_api.c
Lines 183 to 185 in 82c1bd4
Describe the solution you'd like
Just use
TblName
, it's assembled right at the start. Consistent syslog format (see also #1325) of "function: TblName - message" or similar.Describe alternatives you've considered
None
Additional context
Code review
Requester Info
Jacob Hageman - NASA/GSFC
The text was updated successfully, but these errors were encountered: