📄 iimpslogger.cs
字号:
namespace Imps.Client.Utils
{
using System;
public interface IImpsLogger
{
void CreateLogFile();
void SendToServer(Imps.Client.Utils.LogType logType);
void WriteLine(string category, int infoLevel, string summary, string detail, string ext);
bool IsLogBiz { get; set; }
bool IsLogConnection { get; set; }
bool IsLogException { get; set; }
bool IsLogInstall { get; set; }
bool IsLogLiveUpdate { get; set; }
bool IsLogLogin { get; set; }
bool IsLogSipc { get; set; }
string LogFolder { get; set; }
Imps.Client.Utils.LogType LogType { get; set; }
int MaxLogNo { get; set; }
string ServerUrl { get; set; }
int ThresholdLevel { get; set; }
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -