ILogExtensions InfoExt Method (ILog, Object)Apache log4net™ SDK Documentation
Log a message object with the Info level.

Namespace: log4net.Util
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

public static void InfoExt(
	this ILog logger,
	Object message
)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILog. When you use instance method syntax to call this method, omit the first parameter. For more information, see OnlineExtension Methods (Visual Basic) or OnlineExtension Methods (C# Programming Guide).
Remarks

This method first checks if this logger is INFO enabled by reading the value property. This check happens always and does not depend on the implementation. If this logger is INFO enabled, then it converts the message object (passed as parameter) to a string by invoking the appropriate IObjectRenderer. It then proceeds to call all the registered appenders in this logger and also higher in the hierarchy depending on the value of the additivity flag.

WARNING Note that passing an OnlineException to this method will print the name of the OnlineException but no stack trace. To print a stack trace use the InfoExt(ILog, Object, Exception) form instead.

See Also