-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
890ef30
commit 82475cb
Showing
108 changed files
with
999 additions
and
824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
DotNetDatenbankProtokollerV2/ConfigurationTool/Properties/Resources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
DotNetDatenbankProtokollerV2/ConfigurationTool/Properties/Settings.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
30 changes: 14 additions & 16 deletions
30
DotNetDatenbankProtokollerV2/ConfigurationTool/app.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
<?xml version="1.0"?> | ||
<?xml version="1.0"?> | ||
<configuration> | ||
<configSections> | ||
<section name="log4net" | ||
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> | ||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/> | ||
</configSections> | ||
|
||
<startup useLegacyV2RuntimeActivationPolicy="true"> | ||
<supportedRuntime version="v4.0" | ||
sku=".NETFramework,Version=v4.0"/> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> | ||
</startup> | ||
|
||
<log4net> | ||
|
||
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> | ||
<file value="${TMP}\protokoller.txt" /> | ||
<appendToFile value="true" /> | ||
<rollingStyle value="Composite" /> | ||
<MaxSizeRollBackups value="28" /> | ||
<TrimFilesDaily value="true" /> | ||
<datePattern value="yyyy-MM-dd" /> | ||
<file value="${TMP}\protokoller.txt"/> | ||
<appendToFile value="true"/> | ||
<rollingStyle value="Composite"/> | ||
<MaxSizeRollBackups value="28"/> | ||
<TrimFilesDaily value="true"/> | ||
<datePattern value="yyyy-MM-dd"/> | ||
<layout type="log4net.Layout.PatternLayout"> | ||
<conversionPattern value="%date [%-3thread] %-5level %logger - %message%newline" /> | ||
<conversionPattern value="%date [%-3thread] %-5level %logger - %message%newline"/> | ||
</layout> | ||
<maximumFileSize value="250MB" /> | ||
<maximumFileSize value="250MB"/> | ||
</appender> | ||
|
||
<root> | ||
<level value="Debug" /> | ||
<appender-ref ref="RollingLogFileAppender" /> | ||
<level value="Debug"/> | ||
<appender-ref ref="RollingLogFileAppender"/> | ||
</root> | ||
|
||
</log4net> | ||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.