Skip to content

Commit

Permalink
Reduce Console Output Trace from PNOR component in OpenPower
Browse files Browse the repository at this point in the history
I found that these TRACFCOMPs were adding thousands of lines to my
console output and they are benign good-path traces.  I have
changed them to TRACDCOMPs.

Change-Id: Ia5939bfa6eb4b6efa6587ff577c76e5824b38c75
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/57428
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
mabaiocchi authored and dcrowell77 committed Apr 19, 2018
1 parent 576c380 commit 502258b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/usr/pnor/ast_mboxdd.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2011,2017 */
/* Contributors Listed Below - COPYRIGHT 2011,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -350,7 +350,7 @@ errlHndl_t astMbox::doMessage(mboxMessage& io_msg)
ERRORLOG::errlCommit(l_lpc_err, PNOR_COMP_ID);
}

TRACFCOMP( g_trac_pnor, EXIT_MRK "astMboxDD::doMessage() resp=0x%02x",
TRACDCOMP( g_trac_pnor, EXIT_MRK "astMboxDD::doMessage() resp=0x%02x",
io_msg.iv_resp );
return l_err;
}
Expand Down
4 changes: 2 additions & 2 deletions src/usr/pnor/pnor_mboxdd.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2011,2017 */
/* Contributors Listed Below - COPYRIGHT 2011,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -347,7 +347,7 @@ errlHndl_t PnorDD::adjustMboxWindow(bool i_isWrite, uint32_t i_reqAddr,
- l_pos;
}

TRACFCOMP(g_trac_pnor, "astMboxDD::adjustMboxWindow opening %s window at 0x%08x"
TRACDCOMP(g_trac_pnor, "astMboxDD::adjustMboxWindow opening %s window at 0x%08x"
" for addr 0x%08x req_size 0x%08x",
i_isWrite ? "write" : "read", l_pos, i_reqAddr, l_reqSize);

Expand Down

0 comments on commit 502258b

Please sign in to comment.