Adf.Base.Logging.DebugLogProvider.Log C# (CSharp) 메소드

Log() 공개 메소드

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.
리턴 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