Browse Source

fixed: rename LogFile -> LogFilePath, for more understandable

tags/3.0
kimw 9 years ago
parent
commit
2a71bd7ed7
2 changed files with 5 additions and 5 deletions
  1. +3
    -3
      shadowsocks-csharp/Controller/Logging.cs
  2. +2
    -2
      shadowsocks-csharp/View/MenuViewController.cs

+ 3
- 3
shadowsocks-csharp/Controller/Logging.cs View File

@@ -9,15 +9,15 @@ namespace Shadowsocks.Controller
{
public class Logging
{
public static string LogFile;
public static string LogFilePath;
public static bool OpenLogFile()
{
try
{
string temppath = Utils.GetTempPath();
LogFile = Path.Combine(temppath, "shadowsocks.log");
FileStream fs = new FileStream(LogFile, FileMode.Append);
LogFilePath = Path.Combine(temppath, "shadowsocks.log");
FileStream fs = new FileStream(LogFilePath, FileMode.Append);
StreamWriterWithTimestamp sw = new StreamWriterWithTimestamp(fs);
sw.AutoFlush = true;
Console.SetOut(sw);


+ 2
- 2
shadowsocks-csharp/View/MenuViewController.cs View File

@@ -324,7 +324,7 @@ namespace Shadowsocks.View
{
if (logForms.Count == 0)
{
LogForm f = new LogForm(Logging.LogFile);
LogForm f = new LogForm(Logging.LogFilePath);
f.Show();
f.FormClosed += logForm_FormClosed;
@@ -440,7 +440,7 @@ namespace Shadowsocks.View
private void ShowLogItem_Click(object sender, EventArgs e)
{
LogForm f = new LogForm(Logging.LogFile);
LogForm f = new LogForm(Logging.LogFilePath);
f.Show();
f.FormClosed += logForm_FormClosed;


Loading…
Cancel
Save