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

Commit 090c54c

Browse files
Removing ConsoleLogAdapter from SetUpFixtures
1 parent e8fb83b commit 090c54c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/tests/IntegrationTests/SetupFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public void Setup()
1313
Logging.TracingEnabled = true;
1414

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

src/tests/UnitTests/SetUpFixture.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public void SetUp()
1313
Logging.TracingEnabled = true;
1414

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

0 commit comments

Comments
 (0)