diff options
author | xue <> | 2006-01-29 05:06:04 +0000 |
---|---|---|
committer | xue <> | 2006-01-29 05:06:04 +0000 |
commit | 8c89c21a89c114624ab20a8f48c304f0de3727b0 (patch) | |
tree | cadaf3b6767b2fc7fd9d5bc8d5360e9e34fd7ccf /demos | |
parent | 397f1f02d104a08321e9500aa65e83e5b3d22c4e (diff) |
LogRoutes now work when errors happen during application running.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/personal/protected/Pages/Home.page | 2 | ||||
-rw-r--r-- | demos/personal/protected/application.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/demos/personal/protected/Pages/Home.page b/demos/personal/protected/Pages/Home.page index 9471a9b9..204d4c6f 100644 --- a/demos/personal/protected/Pages/Home.page +++ b/demos/personal/protected/Pages/Home.page @@ -1,3 +1,3 @@ -<com:TContent ID="main" >
+<com:TContent ID="main">
main content
</com:TContent>
\ No newline at end of file diff --git a/demos/personal/protected/application.xml b/demos/personal/protected/application.xml index 84467e98..28da6696 100644 --- a/demos/personal/protected/application.xml +++ b/demos/personal/protected/application.xml @@ -8,8 +8,8 @@ -->
<module id="session" class="THttpSession" />
<module id="log" class="System.Log.TLogRouter">
- <route class="TBrowserLogRoute" Categories="System.Web.UI.TPage" />
- <route class="TFileLogRoute" Categories="System.Web.UI.TPage" />
+ <route class="TBrowserLogRoute" Categories="System.TApplication,System.Web.UI.TPage" />
+ <route class="TFileLogRoute" Categories="System" Levels="Notice,Warning,Error,Alert,Fatal" />
</module>
</modules>
<services>
|