Skip to content

Commit

Permalink
Remove warning about a program not being loaded for exception trace
Browse files Browse the repository at this point in the history
- It was rare where this would realistically be an issue, and just spams a number of warnings when you install U# which could confuse people
  • Loading branch information
MerlinVR committed Mar 27, 2021
1 parent 6bc0b1a commit 4042459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/UdonSharp/Editor/UdonSharpRuntimeLogWatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ static bool InitializeScriptLookup()
program.Heap == null ||
program.SymbolTable == null)
{
Debug.LogWarning($"Could not load program for '{programAsset}', exceptions for this script will not be handled until scripts have been reloaded");
//Debug.LogWarning($"Could not load program for '{programAsset}', exceptions for this script will not be handled until scripts have been reloaded");
continue;
}

Expand Down

0 comments on commit 4042459

Please sign in to comment.