Index: binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/StaticHandler.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/StaticHandler.cs	(revision 136)
+++ binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/StaticHandler.cs	(revision 138)
@@ -36,5 +36,5 @@
 								resp.StatusCode = (int)HttpStatusCode.NotFound;
 								if (logMissingFiles)
-									Log.Out ("Web:Static:FileNotFound: " + req.Url.AbsolutePath);
+									Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + fn + "\"");
 								return;
 							}
@@ -51,5 +51,5 @@
 						resp.StatusCode = (int)HttpStatusCode.NotFound;
 						if (logMissingFiles)
-							Log.Out ("Web:Static:FileNotFound: " + req.Url.AbsolutePath);
+							Log.Out ("Web:Static:FileNotFound: \"" + req.Url.AbsolutePath + "\" @ \"" + datapath + "/" + fn + "\"");
 						return;
 					}
