> When I go to http://127.0.0.1:8000/admin/default/errors/app there's an > error log related to the message. When I resolve > the error the message no longer appears. > > Does this imply that web2py constantly scans my application for errors, > and detects them before I run any code. >
The /errors/app page in admin is just a list of the error tickets that have been generated by your app (they can be grouped by exception, which is the default, or listed as individual tickets in reverse chronological order). web2py is not detecting errors before they occur -- these tickets are generated at the time the error actually does occur. Anthony -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

