Skip to main content
Participant
January 28, 2009
Answered

Debugging output not showing up with cfmodule

  • January 28, 2009
  • 1 reply
  • 450 views
Hi, I have an issue here I just can't solve. I have single template that contains both my header and footer code called globalheader.cfm which I call with cfmodule (see code example below). Everything works, the only problem is that the debugging output will not show up. Debugging is enabled properly and shows up if I remove the cfmodule tag calling globalheader.cfm. Any help would be greatly appreciated.
    This topic has been closed for replies.
    Correct answer jaycfm
    Thanks! That wasn't the answer but it lead me to it!

    The culprit was the cfcontent tag. I was using it to remove white space. Didn't realize it would affect the debugging output too. I commented it out and now I see the debugging.





    1 reply

    Participating Frequently
    January 28, 2009
    Hi,

    Please search in globalheader.cfm for <cfsetting showdebugoutput="no">
    jaycfmAuthorCorrect answer
    Participant
    January 29, 2009
    Thanks! That wasn't the answer but it lead me to it!

    The culprit was the cfcontent tag. I was using it to remove white space. Didn't realize it would affect the debugging output too. I commented it out and now I see the debugging.