-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is There a log4net Format? #126
Comments
Hi @dprice! Thank you for your request. Could you please provide some examples of log4net logs, if this is still relevant to you? |
We have our log4net logs configured with this format: <appender name="DailyLogAppender" type="log4net.Appender.RollingFileAppender">
<file value="SomeLogName.log" />
<maxSizeRollBackups value="7" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern
value="%date [%thread] [%property{log4net:HostName}] [%level] %logger - %message %exception%newline" />
</layout>
</appender> Here is a sample log that does not render: |
Hi @derek-price! Default log4net pattern will be added in the formats directory soon, but as soon as you've customized log output, the following settings would work for you:
|
Where is this XML file located on Windows 11? Rider has so many folders and files scattered around the file system. |
Please create the .xml file with the following content
and import it using the button "Import" from the screen above. |
What version of the Ideolog plugin are you using? |
Using JetBrains Rider 2024.3 and com.intellij.ideolog (243.21565.208) |
I use Ideolog in Rider and we use log4net. I didn't see any default setting for log4net or even log4j that I could start with. Is this format available? I'm not exceptional at regex and would love a starting point! :)
The text was updated successfully, but these errors were encountered: