Skip to content

Commit b1b0680

Browse files
committed
Removed some instrumentation code.
1 parent 7c7df24 commit b1b0680

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/json-ld.net/Core/DocumentLoader.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,8 @@ public virtual RemoteDocument LoadDocument(string url)
5555
{
5656
throw;
5757
}
58-
catch (Exception ex)
58+
catch (Exception)
5959
{
60-
Console.WriteLine("Loading failed:" + url);
61-
Console.WriteLine(ex.ToString());
6260
throw new JsonLdError(JsonLdError.Error.LoadingDocumentFailed, url);
6361
}
6462
return doc;

test/json-ld.net.tests/ConformanceTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ public void ConformanceTestPasses(string id, string testname, ConformanceCase co
2525
}
2626
else
2727
{
28-
if (id == "remote-doc-manifest.jsonld#t0005")
29-
{
30-
Console.WriteLine(string.Empty);
31-
}
3228
if (!JsonLdUtils.DeepCompare(result, conformanceCase.output))
3329
{
3430
#if DEBUG

0 commit comments

Comments
 (0)