Skip to content

Commit

Permalink
Update LocalFileCheck log path
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Aug 28, 2024
1 parent 437e4c7 commit 98ca4d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.3.5-rc.1</Version>
<Version>1.3.5-rc.2</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion ricaun.RevitTest.TestAdapter/Services/ApplicationUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private static bool LocalFileExists(string filePath, out string localFilePath)
var assemblyDirectory = Path.GetDirectoryName(typeof(ApplicationUtils).Assembly.Location);
localFilePath = Path.Combine(assemblyDirectory, filePath);
localFilePath = new FileInfo(localFilePath).FullName;
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {assemblyDirectory}");
AdapterLogger.Logger.Debug($"Application LocalFileCheck: {localFilePath}");
if (File.Exists(localFilePath))
{
AdapterLogger.Logger.DebugOnlyLocal($"Download File AssemblyDirectory: {assemblyDirectory}");
Expand Down

0 comments on commit 98ca4d3

Please sign in to comment.