feat: implement JSON backup export functionality with improved download handling
All checks were successful
Publish Container / publish (push) Successful in 3m25s
All checks were successful
Publish Container / publish (push) Successful in 3m25s
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
parent
e8bbae0496
commit
bf333c4a00
7 changed files with 96 additions and 5 deletions
13
nlog.config
13
nlog.config
|
|
@ -10,9 +10,20 @@
|
|||
layout="${longdate}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />
|
||||
<target xsi:type="Debugger" name="debug"
|
||||
layout="${longdate}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />
|
||||
<target xsi:type="File" name="file"
|
||||
fileName="${gdc:item=worktrackerLogPath}"
|
||||
createDirs="true"
|
||||
keepFileOpen="false"
|
||||
concurrentWrites="true"
|
||||
archiveFileName="${gdc:item=worktrackerArchiveDirectory}/worktracker.{#}.log"
|
||||
archiveNumbering="Rolling"
|
||||
archiveAboveSize="10485760"
|
||||
enableArchiveFileCompression="true"
|
||||
maxArchiveFiles="14"
|
||||
layout="${longdate}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}" />
|
||||
</targets>
|
||||
|
||||
<rules>
|
||||
<logger name="*" minlevel="Debug" writeTo="console,debug" />
|
||||
<logger name="*" minlevel="Debug" writeTo="console,debug,file" />
|
||||
</rules>
|
||||
</nlog>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue