mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

Deleted old module Orchard.AzureBlobStorage. Moved all Azure code into Orchard.Azure module, deleting the old Orchard.Azure project. Cleaned up Web.config and Config\* files in Orchard.Web and Orchard.Azure.Web.
21 lines
713 B
XML
21 lines
713 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<log4net>
|
|
|
|
<root>
|
|
<!-- Value of priority may be ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF. -->
|
|
<priority value="WARN" />
|
|
<appender-ref ref="AzureAppender" />
|
|
</root>
|
|
|
|
<appender name="AzureAppender" type="Orchard.Azure.Services.Logging.AzureDiagnosticsAppender, Orchard.Azure">
|
|
<filter type="log4net.Filter.LevelRangeFilter">
|
|
<!-- Only error and fatal messages end up in this target, even if child loggers accept lower priority. -->
|
|
<levelMin value="ERROR" />
|
|
</filter>
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<conversionPattern value="%date [%thread] %logger - %message%newline" />
|
|
</layout>
|
|
</appender>
|
|
|
|
</log4net>
|