forked from EvilBeaver/OneScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
21 lines (19 loc) · 1.07 KB
/
App.config
File metadata and controls
21 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<!--
Секция appSettings позволяет настроить логирование отладки с помощью Serilog
Для конкретных настроек и их значений обращайтесь к справке Serilog
https://github.com/serilog/serilog/wiki/Configuration-Basics
-->
<appSettings>
<!-- Поменяйте на True, чтобы включить лог -->
<add key="onescript:log-enable" value="False" />
<!-- Debug пишет факты случившихся событий и действий, Verbose логирует полностью все сетевые обмены -->
<add key="serilog:minimum-level" value="Debug" />
<!-- Укажите полный путь к файлу лога -->
<add key="serilog:write-to:File.path" value="OneScript.Debugger.log" />
</appSettings>
</configuration>