Skip to content

Commit

Permalink
Fix reversed logic in old errl trace entry
Browse files Browse the repository at this point in the history
Change-Id: I35534486b09ba7b58707efbadb1cd72af69afa3c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36946
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
dcrowell77 committed Mar 13, 2017
1 parent 21cd4b1 commit 7e727f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/usr/errl/errlentry.C
Expand Up @@ -202,9 +202,9 @@ ErrlEntry::ErrlEntry(const errlSeverity_t i_sev,
iv_skipShowingLog(true)
{
#ifdef CONFIG_ERRL_ENTRY_TRACE
TRACDCOMP( g_trac_errl, ERR_MRK"Error created : PLID=%.8X, RC=%.4X, Mod=%.2X, Userdata=%.16X %.16X", plid(), i_reasonCode, i_modId, i_user1, i_user2 );
#else
TRACFCOMP( g_trac_errl, ERR_MRK"Error created : PLID=%.8X, RC=%.4X, Mod=%.2X, Userdata=%.16X %.16X", plid(), i_reasonCode, i_modId, i_user1, i_user2 );
#else
TRACDCOMP( g_trac_errl, ERR_MRK"Error created : PLID=%.8X, RC=%.4X, Mod=%.2X, Userdata=%.16X %.16X", plid(), i_reasonCode, i_modId, i_user1, i_user2 );
#endif
// Collect the Backtrace and add it to the error log
iv_pBackTrace = new ErrlUserDetailsBackTrace();
Expand Down

0 comments on commit 7e727f1

Please sign in to comment.