Atomia.Web.Plugin.PublicOrder.Helpers.ActionTrail.OrderPageLogger.LogOrderPageException C# (CSharp) Method

LogOrderPageException() public static method

Logs the order page exception.
public static LogOrderPageException ( Exception ex ) : void
ex System.Exception The exception.
return void
        public static void LogOrderPageException(Exception ex)
        {
            var shortMessage = string.Format("Atomia Order Page threw an exception.\r\n {0}", ex.Message + "\r\n" + ex.StackTrace);

            LogOrderPageException(ex, shortMessage);
        }

Same methods

OrderPageLogger::LogOrderPageException ( Exception ex, string shortMessage ) : void