BuildIt.BasicDebugLogger.Exception C# (CSharp) Method

Exception() public method

public Exception ( string message, Exception ex ) : void
message string
ex System.Exception
return void
        public void Exception(string message, Exception ex)
        {
            System.Diagnostics.Debug.WriteLine("Exception:" + ex.Message + " - " + message);
        }
    }
BasicDebugLogger