Skip to content

Commit

Permalink
Fix view compilation on OWIN (optional log)
Browse files Browse the repository at this point in the history
  • Loading branch information
exyi committed Aug 18, 2024
1 parent bb8a249 commit 3a3f38c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public async Task<bool> CompileAll(bool buildInParallel = true, bool forceRecomp
await ExecuteCompileTasks(compileTasks, maxParallelism);
}

log.LogInformation("Compiled {0} DotHTML files on {1} threads in {2} s", totalCompiledFiles, maxParallelism, sw.ElapsedSeconds);
log?.LogInformation("Compiled {0} DotHTML files on {1} threads in {2} s", totalCompiledFiles, maxParallelism, sw.ElapsedSeconds);
}
finally
{
Expand Down

0 comments on commit 3a3f38c

Please sign in to comment.