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

Log() public method

Logs the specified System.Exception with the specified user information.
public Log ( Exception exception, IUser user = null ) : void
exception System.Exception The to log.
user IUser The user information to log.
return void
        public void Log(Exception exception, IUser user = null)
        {
            Debug.WriteLine(exception + Environment.NewLine + Environment.StackTrace);
        }

Same methods

DebugLogProvider::Log ( LogLevel level, string message, IUser user = null ) : void
DebugLogProvider::Log ( string message, IUser user = null ) : void
DebugLogProvider