So I'm already logging (log4net) on my own machine using the following configuration
<appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">
<param name="File" value="mylog.txt" />
<param name="AppendToFile" value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="10" />
<maximumFileSize value="5MB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<param name="ConversionPattern" value="%date [%thread] %-5level %logger [%M %C] - %message%newline" />
</layout>
</appender>
Just to test log4net and make sure everything is working, now I want to log on my Azure blob storage, I'm using log4net.Appender.Azure nuget package and it did log to my blob storage using this configuration:
<appender name="AzureBlobAppender" type="log4net.Appender.AzureBlobAppender, log4net.Appender.Azure">
<param name="ContainerName" value="testblob" />
<param name="DirectoryName" value="logs/" />
<!-- You can either specify a connection string or use the ConnectionStringName property instead -->
<param name="ConnectionString" value="UseDevelopmentStorage=true;" />
<!--<param name="ConnectionStringName" value="GlobalConfigurationString" />-->
<bufferSize value="5" />
</appender>
But this configuration left me with many XML files instead of ONE text file so is there a way to do that? I searched around but found nothing related to this.
EDIT: So to append the xml into only one can be done using the following configuration
<appender name="AzureAppendBlobAppender" type="log4net.Appender.AzureAppendBlobAppender, log4net.Appender.Azure">
<param name="ContainerName" value="testloggingblob"/>
<param name="DirectoryName" value="logs"/>
<!-- You can either specify a connection string or use the ConnectionStringName property instead -->
<param name="ConnectionString" value="UseDevelopmentStorage=true"/>
<!--<param name="ConnectionStringName" value="GlobalConfigurationString" />-->
</appender>
But this did not work for me because im using the Azure Storage Emulator and the Append Blob operations are not supported by the emulator currently.
Still no idea how to go from XML to text file.