Exemplo n.º 1
0
        public void LogException(Exception exception)
        {
            //Null check everything but the message
            string message    = exception.Message;
            string stackTrace = exception.StackTrace ?? "(NA)";
            string targetSite = (null != exception.TargetSite ? exception.TargetSite.Name : "(NA)");

            exceptionWriter.WriteExceptionDataToLog(message, stackTrace, targetSite, exception);
        }