Skip to content

Commit 179db35

Browse files
committed
Update Download exception to Warning.
1 parent 834cb93 commit 179db35

File tree

6 files changed

+3
-2
lines changed

6 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3535
- Update to `HttpClient`.
3636
- Update `RevitTestConsole` to use `HttpClient`.
3737
- Update `Log` to show download fail and the `ProductVersion`.
38+
- Update `Download` exception to Warning.
3839
### Warning
3940
- Ignore `Newtonsoft.Json` warning in `Application` project.
4041

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.2.1-beta.4</Version>
3+
<Version>1.2.1-beta.5</Version>
44
</PropertyGroup>
55
</Project>
-20 Bytes
Binary file not shown.
-30 Bytes
Binary file not shown.
-14 Bytes
Binary file not shown.

ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public static bool Download(string address, out string temporaryDirectory)
6060
temporaryDirectory = CreateTemporaryDirectory();
6161
return Download(temporaryDirectory, address, (ex) =>
6262
{
63-
AdapterLogger.Logger.DebugOnlyLocal($"Download Exception: {ex.Message}");
63+
AdapterLogger.Logger.Warning($"Download {ex.GetType().Name}: {ex.Message}");
6464
});
6565
}
6666

0 commit comments

Comments
 (0)