472,146 Members | 1,373 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,146 software developers and data experts.

Web.config - setting debug="false" - what is lost?

By default, Web.config has the following section:
<compilation
defaultLanguage="c#"
debug="true"
/>

note that debug="true"

There is a comment - also in the default Web.config - that states that
making debug="false" will result in faster performance but a loss of
debugging/.pdb symbols.

My situation and question:
I have a centralized error logger that is called from my app's code-behind
and other custom classes (in the try... catch blocks) that logs important
information about runtime errors. Included in my logs is parts of the stack
trace. Question: If I set debug="false", will I lose that stack trace
information - or any other similar important information? Or does
debug="false" only impact rendered aspx pages?

Thanks!
Nov 19 '05 #1
2 2609
Jeremy S. wrote:
By default, Web.config has the following section:
<compilation
defaultLanguage="c#"
debug="true"
/>

note that debug="true"

There is a comment - also in the default Web.config - that states that
making debug="false" will result in faster performance but a loss of
debugging/.pdb symbols.

My situation and question:
I have a centralized error logger that is called from my app's code-behind
and other custom classes (in the try... catch blocks) that logs important
information about runtime errors. Included in my logs is parts of the stack
trace. Question: If I set debug="false", will I lose that stack trace
information - or any other similar important information? Or does
debug="false" only impact rendered aspx pages?

Thanks!

You will stille get the Exception handling stuff you get right now. You
can NOT attach a debugger and in case of an unhandled exception, you
will not see any sourcecode in that 'yellow screen of death'.

//Rutger
Nov 19 '05 #2
Thanks. Just what I wanted to hear... but you also have my curiosity up -
I've gotten along quite well without using the debugging info that
apparently will not be available (and probably related to the "'yellow
screen of death' to which you refer). Where can I read up on that particular
debugging capability? What is it formally called so I can do a google
search?

Thanks!
"Rutger Smit" <DoDotNet@KICKTHIS_Gmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Jeremy S. wrote:
By default, Web.config has the following section:
<compilation
defaultLanguage="c#"
debug="true"
/>

note that debug="true"

There is a comment - also in the default Web.config - that states that
making debug="false" will result in faster performance but a loss of
debugging/.pdb symbols.

My situation and question:
I have a centralized error logger that is called from my app's
code-behind and other custom classes (in the try... catch blocks) that
logs important information about runtime errors. Included in my logs is
parts of the stack trace. Question: If I set debug="false", will I lose
that stack trace information - or any other similar important
information? Or does debug="false" only impact rendered aspx pages?

Thanks!

You will stille get the Exception handling stuff you get right now. You
can NOT attach a debugger and in case of an unhandled exception, you will
not see any sourcecode in that 'yellow screen of death'.

//Rutger

Nov 19 '05 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

reply views Thread by Martin Colmenares | last post: by
5 posts views Thread by Mr Newbie | last post: by
1 post views Thread by Andrew Robinson | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.