public static void Send(Exception ex)
        {
#if NETFX_CORE
            if (IsEnabled)
            {
                _logger.Send(ex);
            }
#else
            throw new PlatformNotSupportedException("ExceptionLogger.Send()");
#endif
        }