diff --git a/CHANGELOG.md b/CHANGELOG.md index 796393c..fde43ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.3.6] / 2024-08-26 +### TestAdapter +- Remove log in the `LocalFileExists` in the `ApplicationUtils`. + ## [1.3.5] / 2024-07-22 - 2024-08-28 ### Features - Update `Application` images to support `light` and `dark` theme. @@ -447,6 +451,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - [x] TestsFail [vNext]: ../../compare/1.0.0...HEAD +[1.3.6]: ../../compare/1.3.5...1.3.6 [1.3.5]: ../../compare/1.3.4...1.3.5 [1.3.4]: ../../compare/1.3.3...1.3.4 [1.3.3]: ../../compare/1.3.2...1.3.3 diff --git a/Directory.Build.props b/Directory.Build.props index a6dd653..70e5edc 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,5 +1,5 @@ - 1.3.5 + 1.3.6-alpha \ No newline at end of file diff --git a/ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs b/ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs index 9e02539..af1cb93 100644 --- a/ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs +++ b/ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs @@ -155,10 +155,10 @@ private static bool LocalFileExists(string filePath, out string localFilePath) var currentDirectory = Directory.GetCurrentDirectory(); localFilePath = Path.Combine(currentDirectory, filePath); localFilePath = new FileInfo(localFilePath).FullName; - AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}"); + AdapterLogger.Logger.DebugOnlyLocal($"Application LocalFileCheck: {localFilePath}"); if (File.Exists(localFilePath)) { - AdapterLogger.Logger.DebugOnlyLocal($"Download LocalFileCheck: {localFilePath}"); + AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}"); return true; } }