public static System.bool IsLogCustomConfigure {get; set;}
Set to true if your application uses Apache log4net. If set to false, Exago will configure log4net itself which may cause problems with application logging.
public static System.bool IsLogCustomConfigure {get; set;}
Set this property before instantiating the Api object.
Alternatively use the overloaded constructor.
using WebReports.Api; public class Example { string appPath = "http://localhost/exago/"; string configFn = "WebReports.xml"; public static void Main() { Api.IsLogCustomConfigure = true; Api api = new Api(appPath, configFn); } }