Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 6e77812

Browse files
Commenting out ConsoleLogAdapter in SetUpFixture
1 parent 1e83fe3 commit 6e77812

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tests/IntegrationTests/SetUpFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public void Setup()
1414

1515
Logging.LogAdapter = new MultipleLogAdapter(
1616
new FileLogAdapter($"..\\{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}-integration-tests.log")
17-
, new ConsoleLogAdapter()
17+
//, new ConsoleLogAdapter()
1818
);
1919
}
2020
}

src/tests/UnitTests/SetUpFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public void SetUp()
1414

1515
Logging.LogAdapter = new MultipleLogAdapter(
1616
new FileLogAdapter($"..\\{DateTime.UtcNow.ToString("yyyyMMddHHmmss")}-unit-tests.log")
17-
, new ConsoleLogAdapter()
17+
//, new ConsoleLogAdapter()
1818
);
1919
}
2020
}

0 commit comments

Comments
 (0)