Skip to content

Commit

Permalink
Remove logging of private data (KhronosGroup#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
rferrese authored and Blake Gross committed Apr 10, 2019
1 parent d6e1a61 commit 698fc75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Scripts/Editor/GLTFImporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public override void OnImportAsset(AssetImportContext ctx)
}
else
{
Debug.LogWarning(string.Format("GLTFImporter: Unable to import texture at path: {0}", texPath));
Debug.LogWarning("GLTFImporter: Unable to import texture from path reference");
}
}
};
Expand Down
4 changes: 2 additions & 2 deletions Scripts/Loader/WebRequestLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public async Task LoadStream(string gltfFilePath)
catch (TaskCanceledException)
{
#if WINDOWS_UWP
throw new Exception($"Connection timeout: {baseAddress}");
throw new Exception("Connection timeout");
#else
throw new HttpRequestException($"Connection timeout: {baseAddress}");
throw new HttpRequestException("Connection timeout");
#endif
}

Expand Down

0 comments on commit 698fc75

Please sign in to comment.