Skip to content

Commit 5adbdbd

Browse files
authored
Fix weird time zone display name on startup (#70)
1 parent b3b211d commit 5adbdbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/Executable/HostExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version is null
1616
: $"cleanuperr v{version.Major}.{version.Minor}.{version.Build}"
1717
);
1818

19-
logger.LogInformation("timezone: {tz}", TimeZoneInfo.Local.Id);
19+
logger.LogInformation("timezone: {tz}", TimeZoneInfo.Local.DisplayName);
2020

2121
return host;
2222
}

0 commit comments

Comments
 (0)