vote up 2 vote down star

Hi, this is my configuration for log4net:

<log4net>
	<appender name="MyLogger" type="log4net.Appender.RollingFileAppender">
		<file value="MyLog.log" />
		<appendToFile value="true" /> 
		<rollingStyle value="Size"/>
		<maxSizeRollBackups value="20"/>
		<maximumFileSize value="1000KB"/>
		<layout type="log4net.Layout.PatternLayout">
			<param name="ConversionPattern" value="%d{yyyy-MM-dd HH:mm:ss},%p,%m%n" />
		</layout>
	</appender>
	<root>
		<level value="DEBUG" />
		<appender-ref ref="MyLogger" />
	</root>
</log4net>

In C# I'm trying to get the name of the log file (which is MyLog.log). I googled and tried many things but failed to do so. Any help?

Thanks!

flag

Are you saying that you're trying to parse the log4net config file in an attempt to get the file name you're logging to? The question doesn't make that clear. What exactly are you trying to do, and what's the problem? – Scott Saad Aug 27 at 21:28
I'm trying to get this part of the configuration "<file value="MyLog.log" />", I'm trying to move away from parsing it myself (for now), because I think asp4net may have a built in way to do so, only I can't find it. If not, I will have to do the parsing myself. – Carlo Aug 27 at 21:30

1 Answer

vote up 2 vote down check

Hi, solution is quite easy in your situation, just use this code:

FileAppender rootAppender = (FileAppender)((log4net.Repository.Hierarchy.Hierarchy)LogManager.GetRepository()).Root.Appenders[0];
string filename = rootAppender.File;
link|flag
Worked like a charm. Thanks! – Carlo Aug 27 at 21:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.