You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<appender name="AzureBlobAppender" type="log4net.Appender.AzureBlobAppender, log4net.Appender.Azure">
<param name="ContainerName" value="testblobcontainer" />
<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 as expected I'm ending up with MANY xml files. So my question is, can I log into 1 text file? If not, can I at least end up with 1 xml file instead of 1 for each log message?
PS: I tried using the following but didnt work
<appender name="AzureAppendBlobAppender" type="log4net.Appender.AzureAppendBlobAppender, log4net.Appender.Azure">
<param name="ContainerName" value="testblobcontainer"/>
<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>
The text was updated successfully, but these errors were encountered:
the Append Blob operations are not supported by the emulator currently so appending to one file won't work for me since im using the development storage. Still no idea how to make it in a txt file instead of XML though.
I'm using the following for now :
But as expected I'm ending up with MANY xml files. So my question is, can I log into 1 text file? If not, can I at least end up with 1 xml file instead of 1 for each log message?
PS: I tried using the following but didnt work
The text was updated successfully, but these errors were encountered: