/// <summary> /// Los the the exception <paramref name="exception"/>. /// </summary> /// <param name="exception"> The exception to be logged. </param> public void Log(Exception exception) { exception.ArgumentMustNotBeNull("exception"); Debug.Print(exception.ToString()); }