Jump to: navigation, search

Changes


HowTo:Configure Logging

496 bytes added, 05:51, 4 June 2014
* The logging in {{UBIK}} Studio can be configured by editing the file '''UBIK.Studio.exe.config''', which is located in the program folder of {{UBIK}} Studio and also contains the section [[UBIK_Web_Service_Configuration_Example#loggingConfiguration|loggingConfiguration]] which can be configured in the same way like the {{UBIK}} Web Service.
===Logging Categories===
{{UBIK}} has different types of categories configured for the logging mechanism. The following categories can be configured in the configuration files. Categories with the remark '''internal''' are available via customizing code, but are used to log internal events. As it is not recommended to mix logging of internal events together with others, the two additional categories '''CUSTOMIZING''' and '''WORKFLOW''' have been created.
|-
|}
 
== Switch off logging ==
Turning off logging can be done by setting the '''switchValue''' in the Category Source to '''Off''' in the corresponding config files:
* '''UBIK.Studio.exe.config''' for for {{UBIKSTUDIO}}
* '''Web.config''' for {{UBIK}} Webservice
 
<source lang="xml">
<loggingConfiguration name="" tracingEnabled="true" defaultCategory="ASSERTION">
...
<categorySources>
<add switchValue="Off" name="ASSERTION">
<listeners>
<add name="log.assertion"/>
</listeners>
</add>
...
</source>
==See also==
10,686
edits