Adf.Base.Logging.EventLogProvider.Log C# (CSharp) Method

Log() public method

Logs the specified System.Exception and the user information.
public Log ( Exception exception, IUser user ) : void
exception System.Exception The to log.
user IUser The user information to log.
return void
        public void Log(Exception exception, IUser user)
        {
            if (!(exception is ThreadAbortException))
            {
                Log(LogLevel.Error, exception.ToString(), user);
            }
        }

Same methods

EventLogProvider::Log ( LogLevel level, string message, IUser user ) : void
EventLogProvider::Log ( string message, IUser user ) : void