|
@@ -13,7 +13,6 @@ using Terra.Arbitrator.Services;
|
|
|
using Terra.Arbitrator.Promises;
|
|
|
using System.Collections.Generic;
|
|
|
using UnityEditor.SceneManagement;
|
|
|
-using UnityEngine;
|
|
|
|
|
|
namespace Terra.Arbitrator.GUI
|
|
|
{
|
|
@@ -421,7 +420,6 @@ namespace Terra.Arbitrator.GUI
|
|
|
private void HandleOperationError(Exception ex)
|
|
|
{
|
|
|
ErrorMessage = $"Operation Failed: {ex.Message}";
|
|
|
- Debug.LogException(ex);
|
|
|
}
|
|
|
|
|
|
private void FinishOperation()
|
|
@@ -532,10 +530,7 @@ namespace Terra.Arbitrator.GUI
|
|
|
GitService.DiffStashedFile(change)
|
|
|
.Catch(ex =>
|
|
|
{
|
|
|
- var res = _displayDialog("Stash Diff Error", $"Error diffing '{change.FilePath}': {ex.Message}", "Uh-oh", "Ok");
|
|
|
- if (!res) return;
|
|
|
- Debug.Log($"Error diffing '{change.FilePath}'");
|
|
|
- Debug.LogException(ex);
|
|
|
+ _ = _displayDialog("Stash Diff Error", $"Error diffing '{change.FilePath}': {ex.Message}", "Uh-oh", "Ok");
|
|
|
});
|
|
|
}
|
|
|
|