Skip to content

Commit

Permalink
SNOW-990111: Add easy logging improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-lf committed Jan 16, 2024
1 parent dcf951e commit 2e7c648
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Snowflake.Data.Tests.UnitTests.Session
public class EasyLoggingStarterTest
{
private static readonly string HomeDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
private static readonly string LogPath = Path.Combine(HomeDirectory, "/some-logs-path/some-folder");
private static readonly string LogPath = Path.Combine(HomeDirectory, "some-logs-path/some-folder");
private const string ConfigPath = "/some-path/config.json";
private const string AnotherConfigPath = "/another/path";
private static readonly string s_expectedLogPath = Path.Combine(LogPath, "dotnet");
Expand Down Expand Up @@ -74,8 +74,6 @@ public void BeforeEach()
//[Ignore("This test requires manual interaction and therefore cannot be run in CI")]
public void TestThatCreatedDirectoryPermissionsFollowUmask()
{
Console.WriteLine("HomeDirectory: " + HomeDirectory);
Console.WriteLine("LogPath: " + LogPath);
// Note: To test with a different value than the default umask, it will have to be set before running this test
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
Expand Down

0 comments on commit 2e7c648

Please sign in to comment.