This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
shadowsocks-windows
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
67
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Fix "clear log" function
tags/4.1.9.3
celeron533
5 years ago
parent
e15cfacacd
commit
6922ba1646
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
shadowsocks-csharp/View/LogForm.cs
+ 5
- 1
shadowsocks-csharp/View/LogForm.cs
View File
@@ -308,7 +308,11 @@ namespace Shadowsocks.View
#region Clean up the content in LogMessageTextBox.
private void DoClearLogs()
{
//logger.Clear();
try
{
File.Delete(filename);
}
catch { }
lastOffset = 0;
LogMessageTextBox.Clear();
}
Write
Preview
Loading…
Cancel
Save