Index: binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/Web.cs
===================================================================
--- binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/Web.cs	(revision 189)
+++ binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/Web.cs	(revision 190)
@@ -128,5 +128,5 @@
 		}
 
-		public void WriteToClient (string line)
+		public void SendLine (string line)
 		{
 			try {
@@ -137,11 +137,7 @@
 		}
 
-		public void WriteToClient_Single (string line, IConnection client)
+		public void SendLog (string text, string trace, UnityEngine.LogType type)
 		{
-			try {
-				//Log.Out ("NOT IMPLEMENTED: Web.WriteToClient_Single");
-			} catch (Exception e) {
-				Log.Out ("Error in Web.WriteToClient_Single: " + e);
-			}
+			throw new System.NotImplementedException ();
 		}
 
