summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/application.xml
blob: d456bd8956b847a28b687c40945049066dbad630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>

<application id="QuickStart" Mode="Debug">
  <modules>
	  <module id="logger" class="System.Log.TEventLog" config="protected/logs/logger.xml" >
<!-- Logging config can be here or in an external file specified by config=".." above -->
<!--
		<logger destination="file" directory="./protected/logs/" filename="prado.log">
			<filter severity="INFO | NOTICE | WARNING | ERROR | FATAL" />
			<filter severity="DEBUG" disabled="true" />
		</logger>
-->
	</module>
  </modules>
  <paths>
    <alias id="Controls" path="controls" />
    <using namespace="Controls.*" />
  </paths>
  <services>
    <service id="page" class="TPageService" DefaultPage="GettingStarted.Introduction" />
  </services>
</application>