Skip to content

Commit 755d999

Browse files
authored
Merge pull request #120 from dsmiller95/master
Replace LogError with LogException
2 parents 30cf584 + e83a0b3 commit 755d999

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/com.alelievr.NodeGraphProcessor/Runtime/Utils/ExceptionToLog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ public static void Call(Action a)
1616
}
1717
catch (Exception e)
1818
{
19-
Debug.LogError(e);
19+
Debug.LogException(e);
2020
}
2121
#endif
2222
}
2323
}
24-
}
24+
}

0 commit comments

Comments
 (0)