Base.Log.Log C# (CSharp) Method

Log() static private method

static private Log ( ) : System
return System
		static Log()
		{
			if (!Directory.Exists("../Logs"))
			{
				Directory.CreateDirectory("../Logs");
			}
			info = new StreamWriter($"../Logs/Log-Client-Info.txt", false, Encoding.Unicode, 1024);
			error = new StreamWriter($"../Logs/Log-Client-Error.txt", false, Encoding.Unicode, 1024);
		}