- Timestamp:
- Jan 27, 2023, 7:28:00 PM (22 months ago)
- Location:
- binary-improvements2/WebServer/src/FileCache
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/WebServer/src/FileCache/DirectAccess.cs
r392 r402 2 2 using System.IO; 3 3 4 namespace AllocsFixes.FileCache {4 namespace Webserver.FileCache { 5 5 // Not caching at all, simply reading from disk on each request 6 6 public class DirectAccess : AbstractCache { … … 9 9 return File.Exists (_filename) ? File.ReadAllBytes (_filename) : null; 10 10 } catch (Exception e) { 11 Log.Out ( "Error in DirectAccess.GetFileContent: " + e);11 Log.Out ($"Error in DirectAccess.GetFileContent: {e}"); 12 12 } 13 13
Note:
See TracChangeset
for help on using the changeset viewer.