forked from r-Larch/TcBuild
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTotalcmd.exe.config
More file actions
24 lines (24 loc) · 954 Bytes
/
Totalcmd.exe.config
File metadata and controls
24 lines (24 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.diagnostics>
<trace autoflush="true" indentsize="3">
<listeners>
<clear/>
<add
name="traceListener"
type="System.Diagnostics.TextWriterTraceListener, system, version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
initializeData="c:\Tools\totalcmd\plugins\DotNetPlugin.log" />
</listeners>
</trace>
<switches>
<!-- This switch controls .NET plugin tracing.
Set this value to the appropriate level:
"0" (or "Off") - no traces,
"1" (or "Error") - plugin errors,
"2" (or "Warning") - most important plugin operations,
"3" (or "Info") - more plugin operations,
"4" (or "Verbose") - all plugin operations -->
<add name="DotNetPlugins" value="3" />
</switches>
</system.diagnostics>
</configuration>