Changeset 138 for binary-improvements/7dtd-server-fixes/src
- Timestamp:
- Aug 27, 2014, 7:00:06 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/StaticHandler.cs
r134 r138 36 36 resp.StatusCode = (int)HttpStatusCode.NotFound; 37 37 if (logMissingFiles) 38 Log.Out ("Web:Static:FileNotFound: " + req.Url.AbsolutePath);38 Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + fn + "\""); 39 39 return; 40 40 } … … 51 51 resp.StatusCode = (int)HttpStatusCode.NotFound; 52 52 if (logMissingFiles) 53 Log.Out ("Web:Static:FileNotFound: " + req.Url.AbsolutePath);53 Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + fn + "\""); 54 54 return; 55 55 }
Note:
See TracChangeset
for help on using the changeset viewer.