diff --git a/src/V3TraceDecl.cpp b/src/V3TraceDecl.cpp index 8c6f73e25..bba3bc78b 100644 --- a/src/V3TraceDecl.cpp +++ b/src/V3TraceDecl.cpp @@ -237,8 +237,9 @@ private: void addIgnore(const char* why) { ++m_statIgnSigs; - addToSubFunc(new AstComment{m_traVscp->fileline(), - "Tracing: " + m_traName + " // Ignored: " + why, true}); + std::string cmt = std::string{"Tracing: "} + m_traName + " // Ignored: " + why; + if (debug() > 3 && m_traVscp) std::cout << "- " << m_traVscp->fileline() << cmt << endl; + addToSubFunc(new AstComment{m_traVscp->fileline(), cmt, true}); } // VISITORS